Changeset 9293
- Timestamp:
- 08/11/11 14:05:27 (14 years ago)
- Location:
- issm/trunk/src
- Files:
-
- 1 added
- 1 deleted
- 5 edited
- 5 moved
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/Makefile.am
r9291 r9293 566 566 ./modules/Orthx/Orthx.h\ 567 567 ./modules/Orthx/Orthx.cpp\ 568 ./modules/Update Spcsx/UpdateSpcsx.h\569 ./modules/Update Spcsx/UpdateSpcsx.cpp\568 ./modules/UpdateDynamicConstraintsx/UpdateDynamicConstraintsx.h\ 569 ./modules/UpdateDynamicConstraintsx/UpdateDynamicConstraintsx.cpp\ 570 570 ./modules/Gradjx/Gradjx.h\ 571 571 ./modules/Gradjx/Gradjx.cpp\ … … 1255 1255 ./modules/Orthx/Orthx.h\ 1256 1256 ./modules/Orthx/Orthx.cpp\ 1257 ./modules/Update Spcsx/UpdateSpcsx.h\1258 ./modules/Update Spcsx/UpdateSpcsx.cpp\1257 ./modules/UpdateDynamicConstraintsx/UpdateDynamicConstraintsx.h\ 1258 ./modules/UpdateDynamicConstraintsx/UpdateDynamicConstraintsx.cpp\ 1259 1259 ./modules/Gradjx/Gradjx.h\ 1260 1260 ./modules/Gradjx/Gradjx.cpp\ -
issm/trunk/src/c/modules/UpdateDynamicConstraintsx/UpdateDynamicConstraintsx.cpp
r9292 r9293 1 /*!\file Update Spcsx1 /*!\file UpdateDynamicConstraintsx 2 2 * \brief module to update single point constraints out of new spc vector, for next time step. 3 3 */ 4 4 5 #include "./Update Spcsx.h"5 #include "./UpdateDynamicConstraintsx.h" 6 6 7 7 #include "../../shared/shared.h" … … 10 10 #include "../../EnumDefinitions/EnumDefinitions.h" 11 11 12 void Update Spcsx(Nodes* nodes,Parameters* parameters,Vec ys){12 void UpdateDynamicConstraintsx(Nodes* nodes,Parameters* parameters,Vec ys){ 13 13 14 14 int i; -
issm/trunk/src/c/modules/UpdateDynamicConstraintsx/UpdateDynamicConstraintsx.h
r9292 r9293 1 /*!\file: Update Spcsx.h1 /*!\file: UpdateDynamicConstraintsx.h 2 2 * \brief header file for updating single point constraints for next time step 3 3 */ 4 4 5 #ifndef _UPDATE SPCSX_H6 #define _UPDATE SPCSX_H5 #ifndef _UPDATEDYNAMICCONSTRAINTSXX_H 6 #define _UPDATEDYNAMICCONSTRAINTSXX_H 7 7 8 8 #include "../../Container/Container.h" 9 9 #include "../../objects/objects.h" 10 10 11 void Update Spcsx(Nodes* nodes,Parameters* parameters,Vec ys);11 void UpdateDynamicConstraintsx(Nodes* nodes,Parameters* parameters,Vec ys); 12 12 13 13 #endif /* _UPDATESPCSX_H */ -
issm/trunk/src/c/modules/modules.h
r9259 r9293 101 101 #include "./Solverx/Solverx.h" 102 102 #include "./SpcNodesx/SpcNodesx.h" 103 #include "./UpdateConstraintsx/UpdateConstraintsx.h"104 103 #include "./SurfaceAreax/SurfaceAreax.h" 105 104 #include "./SystemMatricesx/SystemMatricesx.h" … … 109 108 #include "./ThicknessAbsGradientx/ThicknessAbsGradientx.h" 110 109 #include "./UpdateVertexPositionsx/UpdateVertexPositionsx.h" 111 #include "./UpdateSpcsx/UpdateSpcsx.h" 110 #include "./UpdateConstraintsx/UpdateConstraintsx.h" 111 #include "./UpdateDynamicConstraintsx/UpdateDynamicConstraintsx.h" 112 112 #include "./VerticesDofx/VerticesDofx.h" 113 113 #include "./VecMergex/VecMergex.h" -
issm/trunk/src/c/solutions/ResetBoundaryConditions.cpp
r8803 r9293 28 28 29 29 /*update spcs using this new vector of constraints: */ 30 Update Spcsx(femmodel->nodes,femmodel->parameters,ys);30 UpdateDynamicConstraintsx(femmodel->nodes,femmodel->parameters,ys); 31 31 32 32 /*Free ressources:*/ -
issm/trunk/src/m/solutions/ResetBoundaryConditions.m
r8812 r9293 17 17 18 18 %update values of spcs inside nodes 19 femmodel.nodes=Update Spcs(femmodel.nodes,femmodel.parameters,ys);19 femmodel.nodes=UpdateDynamicConstraints(femmodel.nodes,femmodel.parameters,ys); -
issm/trunk/src/mex/Makefile.am
r9262 r9293 85 85 InputUpdateFromVector\ 86 86 UpdateVertexPositions\ 87 Update Spcs\87 UpdateDynamicConstraints\ 88 88 VerticesDof 89 89 … … 348 348 UpdateVertexPositions/UpdateVertexPositions.h 349 349 350 Update Spcs_SOURCES = UpdateSpcs/UpdateSpcs.cpp\351 Update Spcs/UpdateSpcs.h350 UpdateDynamicConstraints_SOURCES = UpdateDynamicConstraints/UpdateDynamicConstraints.cpp\ 351 UpdateDynamicConstraints/UpdateDynamicConstraints.h 352 352 353 353 ParsePetscOptions_SOURCES = ParsePetscOptions/ParsePetscOptions.cpp\ 354 354 ParsePetscOptions/ParsePetscOptions.h 355 355 356 357 356 VerticesDof_SOURCES = VerticesDof/VerticesDof.cpp\ 358 357 VerticesDof/VerticesDof.h 359 -
issm/trunk/src/mex/UpdateDynamicConstraints/UpdateDynamicConstraints.cpp
r9284 r9293 1 /*\file Update Spcs.c1 /*\file UpdateDynamicConstraints.c 2 2 *\brief: update single point constraints inside nodes out of constrain vector ys 3 3 */ 4 4 5 #include "./UpdateSpcs.h" 6 5 #include "./UpdateDynamicConstraints.h" 7 6 8 7 void mexFunction( int nlhs, mxArray* plhs[], int nrhs, const mxArray* prhs[]){ … … 17 16 18 17 /*checks on arguments on the matlab side: */ 19 CheckNumMatlabArguments(nlhs,NLHS,nrhs,NRHS,__FUNCT__,&Update SpcsUsage);18 CheckNumMatlabArguments(nlhs,NLHS,nrhs,NRHS,__FUNCT__,&UpdateDynamicConstraintsUsage); 20 19 21 20 /*Input datasets: */ … … 25 24 26 25 /*!Generate internal degree of freedom numbers: */ 27 Update Spcsx(nodes,parameters,ys);26 UpdateDynamicConstraintsx(nodes,parameters,ys); 28 27 29 28 /*write output datasets: */ … … 38 37 } 39 38 40 void Update SpcsUsage(void)39 void UpdateDynamicConstraintsUsage(void) 41 40 { 42 41 _printf_(true,"\n"); -
issm/trunk/src/mex/UpdateDynamicConstraints/UpdateDynamicConstraints.h
r9284 r9293 1 2 1 /* 3 Update Spcs.h2 UpdateDynamicConstraints.h 4 3 */ 5 6 4 7 5 #ifndef _UPDATESPCS_H … … 9 7 10 8 /* local prototypes: */ 11 void Update SpcsUsage(void);9 void UpdateDynamicConstraintsUsage(void); 12 10 13 11 #include "../../c/modules/modules.h" … … 16 14 17 15 #undef __FUNCT__ 18 #define __FUNCT__ "Update Spcs"16 #define __FUNCT__ "UpdateDynamicConstraints" 19 17 20 18 /* serial input macros: */ … … 32 30 #define NRHS 3 33 31 34 35 32 #endif /* _UPDATESPCS_H */ 36
Note:
See TracChangeset
for help on using the changeset viewer.