16 if (field_parser.search(1,
"ClusterSchedulerType")) {
17 std::string cluster_scheduler_type;
18 cluster_scheduler_type = field_parser.next(cluster_scheduler_type);
19 if(cluster_scheduler_type ==
"LOCAL")
21 std::cout <<
" !!! WARNING: " << std::endl;
22 std::cout <<
" Using the LOCAL job 'scheduler'. You will have to launch each script" << std::endl;
23 std::cout <<
" MANUALLY!!! Reason: MPI does not support recursive 'mpirun' calls" << std::endl;
26 else if(cluster_scheduler_type ==
"PBS")
28 else if(cluster_scheduler_type ==
"SLURM")
36 if (field_parser.search(1,
"ScratchFolderPath")) {
43 if (field_parser.search(1,
"CouplingMatricesFolder")) {
50 if (field_parser.search(1,
"UseRigidBodyModesB"))
53 if (field_parser.search(1,
"RBVectorBase")) {
60 if (field_parser.search(1,
"NbOfRBVectors")) {
70 if ( field_parser.search(1,
"CGPreconditionerType") )
72 std::string CG_precond_type_string = field_parser.next(CG_precond_type_string);
73 if(CG_precond_type_string ==
"NONE")
75 else if(CG_precond_type_string ==
"Coupling_operator")
77 else if(CG_precond_type_string ==
"Coupling_operator_jacobi")
void get_input_params(GetPot &field_parser, feti_iterate_params &input_params)
Parser function for the coupled solver test programs.
carl::BaseCGPrecondType CG_precond_type
[CG] Type of preconditionner.
bool bUseRigidBodyModes
[RB] Use the rigid body modes for the micro system?
std::string scratch_folder_path
Path to the folder which will be used to save the temporary files during the solve operation...
ClusterSchedulerType scheduler
Cluster scheduler software type. Values: PBS, SLURM (code not implemented for the later yet)...
std::string RB_vectors_base
[RB] Common path base for the micro system's rigid body mode vectors.
int nb_of_rb_vectors
[RB] Number of RB mode vectors.
Structure containing the parameters for the setup initialization of the FETI solver.
std::string coupling_folder_path
Folder containing the coupling matrices.