Changeset 1172
- Timestamp:
- 06/30/09 09:09:33 (16 years ago)
- Location:
- issm/trunk/src
- Files:
-
- 12 added
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/Makefile.am
r1105 r1172 239 239 ./MpcNodesx/MpcNodesx.h\ 240 240 ./MpcNodesx/MpcNodesx.cpp\ 241 ./ DataInterpx/DataInterpx.cpp\242 ./ DataInterpx/DataInterpx.h\241 ./InterpFromGridx/InterpFromGridx.cpp\ 242 ./InterpFromGridx/InterpFromGridx.h\ 243 243 ./HoleFillerx/HoleFillerx.cpp\ 244 244 ./HoleFillerx/HoleFillerx.h\ … … 519 519 ./MpcNodesx/MpcNodesx.h\ 520 520 ./MpcNodesx/MpcNodesx.cpp\ 521 ./ DataInterpx/DataInterpx.cpp\522 ./ DataInterpx/DataInterpx.h\521 ./InterpFromGridx/InterpFromGridx.cpp\ 522 ./InterpFromGridx/InterpFromGridx.h\ 523 523 ./HoleFillerx/HoleFillerx.cpp\ 524 524 ./HoleFillerx/HoleFillerx.h\ -
issm/trunk/src/c/issm.h
r1105 r1172 25 25 #include "./ContourToMeshx/ContourToMeshx.h" 26 26 #include "./ContourToNodesx/ContourToNodesx.h" 27 #include "./ DataInterpx/DataInterpx.h"27 #include "./InterpFromGridx/InterpFromGridx.h" 28 28 #include "./HoleFillerx/HoleFillerx.h" 29 29 #include "./MeshPartitionx/MeshPartitionx.h" -
issm/trunk/src/m/utils/Mesh/squaremesh.m
r33 r1172 10 10 % [x y index]=squaremesh(Lx,Ly,nx,ny) 11 11 12 %get number o gelements and number of nodes12 %get number of elements and number of nodes 13 13 nel=(nx-1)*(ny-1)*2; 14 14 nods=nx*ny; -
issm/trunk/src/mex/Makefile.am
r1103 r1172 12 12 ContourToNodes \ 13 13 ControlConstrain \ 14 DataInterp \15 14 Dof\ 16 15 Du\ … … 20 19 GriddataMeshToGrid\ 21 20 HoleFiller \ 21 InterpFromGrid \ 22 InterpFromMesh2d \ 23 InterpFromMesh3d \ 22 24 Mergesolutionfromftog\ 23 25 MeshPartition\ … … 96 98 ControlConstrain/ControlConstrain.h 97 99 98 DataInterp_SOURCES = DataInterp/DataInterp.cpp\99 DataInterp/DataInterp.h100 101 100 Dof_SOURCES = Dof/Dof.cpp\ 102 101 Dof/Dof.h … … 123 122 HoleFiller/HoleFiller.h 124 123 124 InterpFromGrid_SOURCES = InterpFromGrid/InterpFromGrid.cpp\ 125 InterpFromGrid/InterpFromGrid.h 126 127 InterpFromMesh2d_SOURCES = InterpFromMesh2d/InterpFromMesh2d.cpp\ 128 InterpFromMesh2d/InterpFromMesh2d.h 129 130 InterpFromMesh3d_SOURCES = InterpFromMesh3d/InterpFromMesh3d.cpp\ 131 InterpFromMesh3d/InterpFromMesh3d.h 132 125 133 Mergesolutionfromftog_SOURCES = Mergesolutionfromftog/Mergesolutionfromftog.cpp\ 126 134 Mergesolutionfromftog/Mergesolutionfromftog.h
Note:
See TracChangeset
for help on using the changeset viewer.