Changeset 1172


Ignore:
Timestamp:
06/30/09 09:09:33 (16 years ago)
Author:
Mathieu Morlighem
Message:

Added mex interpolation routines

Location:
issm/trunk/src
Files:
12 added
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/Makefile.am

    r1105 r1172  
    239239                                        ./MpcNodesx/MpcNodesx.h\
    240240                                        ./MpcNodesx/MpcNodesx.cpp\
    241                                         ./DataInterpx/DataInterpx.cpp\
    242                                         ./DataInterpx/DataInterpx.h\
     241                                        ./InterpFromGridx/InterpFromGridx.cpp\
     242                                        ./InterpFromGridx/InterpFromGridx.h\
    243243                                        ./HoleFillerx/HoleFillerx.cpp\
    244244                                        ./HoleFillerx/HoleFillerx.h\
     
    519519                                        ./MpcNodesx/MpcNodesx.h\
    520520                                        ./MpcNodesx/MpcNodesx.cpp\
    521                                         ./DataInterpx/DataInterpx.cpp\
    522                                         ./DataInterpx/DataInterpx.h\
     521                                        ./InterpFromGridx/InterpFromGridx.cpp\
     522                                        ./InterpFromGridx/InterpFromGridx.h\
    523523                                        ./HoleFillerx/HoleFillerx.cpp\
    524524                                        ./HoleFillerx/HoleFillerx.h\
  • issm/trunk/src/c/issm.h

    r1105 r1172  
    2525#include "./ContourToMeshx/ContourToMeshx.h"
    2626#include "./ContourToNodesx/ContourToNodesx.h"
    27 #include "./DataInterpx/DataInterpx.h"
     27#include "./InterpFromGridx/InterpFromGridx.h"
    2828#include "./HoleFillerx/HoleFillerx.h"
    2929#include "./MeshPartitionx/MeshPartitionx.h"
  • issm/trunk/src/m/utils/Mesh/squaremesh.m

    r33 r1172  
    1010%      [x y index]=squaremesh(Lx,Ly,nx,ny)
    1111
    12 %get number og elements and number of nodes
     12%get number of elements and number of nodes
    1313nel=(nx-1)*(ny-1)*2;
    1414nods=nx*ny;
  • issm/trunk/src/mex/Makefile.am

    r1103 r1172  
    1212                                ContourToNodes \
    1313                                ControlConstrain \
    14                                 DataInterp \
    1514                                Dof\
    1615                                Du\
     
    2019                                GriddataMeshToGrid\
    2120                                HoleFiller \
     21                                InterpFromGrid \
     22                                InterpFromMesh2d \
     23                                InterpFromMesh3d \
    2224                                Mergesolutionfromftog\
    2325                                MeshPartition\
     
    9698                          ControlConstrain/ControlConstrain.h
    9799
    98 DataInterp_SOURCES = DataInterp/DataInterp.cpp\
    99                           DataInterp/DataInterp.h
    100 
    101100Dof_SOURCES = Dof/Dof.cpp\
    102101                          Dof/Dof.h
     
    123122                          HoleFiller/HoleFiller.h
    124123
     124InterpFromGrid_SOURCES = InterpFromGrid/InterpFromGrid.cpp\
     125                          InterpFromGrid/InterpFromGrid.h
     126
     127InterpFromMesh2d_SOURCES = InterpFromMesh2d/InterpFromMesh2d.cpp\
     128                                                        InterpFromMesh2d/InterpFromMesh2d.h
     129
     130InterpFromMesh3d_SOURCES = InterpFromMesh3d/InterpFromMesh3d.cpp\
     131                                                                        InterpFromMesh3d/InterpFromMesh3d.h
     132
    125133Mergesolutionfromftog_SOURCES = Mergesolutionfromftog/Mergesolutionfromftog.cpp\
    126134                          Mergesolutionfromftog/Mergesolutionfromftog.h
Note: See TracChangeset for help on using the changeset viewer.