Changeset 4082
- Timestamp:
- 06/21/10 11:53:17 (15 years ago)
- Location:
- issm/trunk/src/c
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/Makefile.am
r4079 r4082 428 428 ./modules/InputUpdateFromConstantx/InputUpdateFromConstantx.h\ 429 429 ./modules/InputUpdateFromConstantx/InputUpdateFromConstantx.cpp\ 430 ./modules/InputUpdateFromDakotax/InputUpdateFromDakotax.h\ 431 ./modules/InputUpdateFromDakotax/InputUpdateFromDakotax.cpp\ 430 432 ./modules/UpdateInputsFromSolutionx/UpdateInputsFromSolutionx.h\ 431 433 ./modules/UpdateInputsFromSolutionx/UpdateInputsFromSolutionx.cpp\ … … 949 951 ./modules/InputUpdateFromConstantx/InputUpdateFromConstantx.h\ 950 952 ./modules/InputUpdateFromConstantx/InputUpdateFromConstantx.cpp\ 953 ./modules/InputUpdateFromDakotax/InputUpdateFromDakotax.h\ 954 ./modules/InputUpdateFromDakotax/InputUpdateFromDakotax.cpp\ 951 955 ./modules/UpdateInputsFromSolutionx/UpdateInputsFromSolutionx.h\ 952 956 ./modules/UpdateInputsFromSolutionx/UpdateInputsFromSolutionx.cpp\ -
issm/trunk/src/c/modules/InputUpdateFromDakotax/InputUpdateFromDakotax.cpp
r4081 r4082 1 /*!\file UpdateInputsFromDakotax1 /*!\file InputUpdateFromDakotax 2 2 * \brief: update datasets using parameter inputs 3 3 */ 4 4 5 #include "./ UpdateInputsFromDakotax.h"5 #include "./InputUpdateFromDakotax.h" 6 6 #include "../../shared/shared.h" 7 7 #include "../../include/include.h" … … 9 9 #include "../../EnumDefinitions/EnumDefinitions.h" 10 10 11 void UpdateInputsFromDakotax(double* variables,char** variables_descriptors,int numvariables,FemModel* femmodel,double* qmu_part,int qmu_npart){11 void InputUpdateFromDakotax(double* variables,char** variables_descriptors,int numvariables,FemModel* femmodel,double* qmu_part,int qmu_npart){ 12 12 13 13 ISSMERROR(" not supported yet!"); -
issm/trunk/src/c/modules/InputUpdateFromDakotax/InputUpdateFromDakotax.h
r4081 r4082 1 /*!\file: UpdateInputsFromDakotax.h1 /*!\file: InputUpdateFromDakotax.h 2 2 * \brief header file for updating datasets from inputs 3 3 */ 4 4 5 #ifndef _ UPDATEINPUTSFROMDAKOTAXX_H6 #define _ UPDATEINPUTSFROMDAKOTAXX_H5 #ifndef _INPUTUPDATEFROMDAKOTAXX_H 6 #define _INPUTUPDATEFROMDAKOTAXX_H 7 7 8 8 #include "../../objects/objects.h" … … 10 10 11 11 12 void UpdateInputsFromDakotax(double* variables,char** variables_descriptors,int numvariables,FemModel* femmodel,double* qmu_part,int qmu_npart);12 void InputUpdateFromDakotax(double* variables,char** variables_descriptors,int numvariables,FemModel* femmodel,double* qmu_part,int qmu_npart); 13 13 14 #endif /* _ UPDATEINPUTSFROMDAKOTAXX_H */14 #endif /* _INPUTUPDATEFROMDAKOTAXX_H */ 15 15 -
issm/trunk/src/c/modules/Qmux/SpawnCoreParallel.cpp
r4057 r4082 89 89 90 90 /*Modify core inputs in objects contained in femmodel, to reflect the dakota variables inputs: */ 91 UpdateInputsFromDakotax(variables,variables_descriptors,numvariables,femmodel,qmu_part,qmu_npart);91 InputUpdateFromDakotax(variables,variables_descriptors,numvariables,femmodel,qmu_part,qmu_npart); 92 92 93 93 /*Run the analysis core solution sequence: */ -
issm/trunk/src/c/modules/modules.h
r4079 r4082 30 30 #include "./InputUpdateFromConstantx/InputUpdateFromConstantx.h" 31 31 #include "./UpdateInputsFromSolutionx/UpdateInputsFromSolutionx.h" 32 #include "./ UpdateInputsFromDakotax/UpdateInputsFromDakotax.h"32 #include "./InputUpdateFromDakotax/InputUpdateFromDakotax.h" 33 33 #include "./UpdateInputsFromVectorx/UpdateInputsFromVectorx.h" 34 34 #include "./UpdateGeometryx/UpdateGeometryx.h"
Note:
See TracChangeset
for help on using the changeset viewer.