<< opustc_couplexrun OPUS Test Case Toolbox opustc_getpath >>

OPUS Test Case Toolbox >> OPUS Test Case Toolbox > opustc_couplexstartup

opustc_couplexstartup

Startup the couplex test case, given X.

Calling Sequence

[cplxdir,plexfile,outputfile,castembin,dgibifile] = opustc_couplexstartup ( X )
[cplxdir,plexfile,outputfile,castembin,dgibifile] = opustc_couplexstartup ( X , D )

Parameters

X:

a np-by-15 matrix, where np is the number of experiments to perform

D:

a parameter list with the determinist parameters

D.directory:

the subdirectory of the temporary directory where the simulation must be performed (default = "couplex")

D.verbose:

set to true to make the simulation verbose (default %f)

D.castembin:

the short name of the CASTEM executable (default "castem09")

cplxdir :

a 1-by-1 matrix of strings, the simulation directory

plexfile :

a 1-by-1 matrix of strings, the design of experiments file

outputfile :

a 1-by-1 matrix of strings, the output file

castembin :

a 1-by-1 matrix of strings, the full path to the CASTEM executable

dgibifile :

a 1-by-1 matrix of strings, the full path to the dgibi template data file.

Description

Prepare the files to startup the COUPLEX test case.

We suppose that the "CASTEM" environment variable contains the path to the CASTEM executable.

Examples

// Check that the "CASTEM" environment variable is well defined
getenv("CASTEM")

// Startup a simulation
X = [25.0 3.0e-6 6.0 3.0e-5 1e-6 5.0e-4 50. 50. 50. 50. 21. 51. 3. 110. 160. ];
[cplxdir,plexfile,outputfile,castembin,dgibifile] = opustc_couplexstartup ( X )

// Customize verbose
D = init_param();
D = add_param(D,"verbose",%t);
X = [25.0 3.0e-6 6.0 3.0e-5 1e-6 5.0e-4 50. 50. 50. 50. 21. 51. 3. 110. 160. ];
[cplxdir,plexfile,outputfile,castembin,dgibifile] = opustc_couplexstartup ( X , D )

Authors

Bibliography

"OPUS, Cas test CEA, Propagation des incertitudes dans le probleme COUPLEX-1", JM. Martinez, Ph. Montarnal, M. Lamoureux, O. Le Maitre, 6 avril 2010

"Analyse d'incertitudes : application de la theorie des polynomes du chaos a l'analyse de surete du stockage de dechets nucleaires", Ecole Centrale Paris, Paul Balanca, Anne-Celine Boulanger, Marc Dupin, Cyril Labbe, Etude encadree par Florian De Vuyst

<< opustc_couplexrun OPUS Test Case Toolbox opustc_getpath >>