source:
issm/oecreview/Archive/20545-21336/ISSM-20849-20850.diff@
21337
Last change on this file since 21337 was 21337, checked in by , 8 years ago | |
---|---|
File size: 3.5 KB |
-
../trunk-jpl/src/m/modules/BamgMesher.m
1 function [bamgmesh,bamggeom] = BamgMesher(bamgmesh,bamggeom,bamgoptions); 2 %BAMGMESHER 3 % 4 % Usage: 5 % [bamgmesh, bamggeom] = BamgMesher(bamgmesh,bamggeom,bamgoptions); 6 % 7 % bamgmesh: input bamg mesh 8 % bamggeom: input bamg geometry for the mesh 9 % bamgoptions: options for the bamg mesh 10 11 % Check usage 12 if nargin~=3 13 help BamgMesher 14 error('Wrong usage (see above)'); 15 end 16 17 % Call mex module 18 [bamgmesh, bamggeom] = BamgMesher_matlab(bamgmesh,bamggeom,bamgoptions); 19 -
../trunk-jpl/src/m/modules/BamgMesher.py
1 from BamgMesher_python import BamgMesher_python 2 3 def BamgMesher(bamgmesh,bamggeom,bamgoptions): 4 """ 5 BAMGMESHER 6 7 Usage: 8 [bamgmesh,bamggeom] = BamgMesher(bamgmesh,bamggeom,bamgoptions); 9 10 bamgmesh: input bamg mesh 11 bamggeom: input bamg geometry for the mesh 12 bamgoptions: options for the bamg mesh 13 """ 14 15 #Call mex module 16 [bamgmesh, bamggeom] = BamgMesher_python(bamgmesh, bamggeom, bamgoptions); 17 18 #return 19 return [bamgmesh, bamggeom] -
../trunk-jpl/src/wrappers/matlab/Makefile.am
36 36 libISSMApi_la_CXXFLAGS= $(ALLCXXFLAGS) 37 37 #}}} 38 38 #Wrappers {{{ 39 lib_LTLIBRARIES += BamgMesher .la\39 lib_LTLIBRARIES += BamgMesher_matlab.la\ 40 40 BamgConvertMesh_matlab.la\ 41 41 BamgTriangulate.la\ 42 42 ContourToMesh_matlab.la\ … … 140 140 libISSMApi_la_LDFLAGS = -static 141 141 endif 142 142 143 BamgMesher_ la_SOURCES = ../BamgMesher/BamgMesher.cpp144 BamgMesher_ la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB)143 BamgMesher_matlab_la_SOURCES = ../BamgMesher/BamgMesher.cpp 144 BamgMesher_matlab_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 145 145 146 146 BamgConvertMesh_matlab_la_SOURCES = ../BamgConvertMesh/BamgConvertMesh.cpp 147 147 BamgConvertMesh_matlab_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) -
../trunk-jpl/src/wrappers/python/Makefile.am
28 28 #Wrappers {{{ 29 29 if WRAPPERS 30 30 lib_LTLIBRARIES += BamgConvertMesh_python.la\ 31 BamgMesher .la\31 BamgMesher_python.la\ 32 32 ContourToMesh_python.la\ 33 33 ContourToNodes_python.la\ 34 34 ElementConnectivity.la\ … … 92 92 BamgConvertMesh_python_la_SOURCES = ../BamgConvertMesh/BamgConvertMesh.cpp 93 93 BamgConvertMesh_python_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 94 94 95 BamgMesher_ la_SOURCES = ../BamgMesher/BamgMesher.cpp96 BamgMesher_ la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB)95 BamgMesher_python_la_SOURCES = ../BamgMesher/BamgMesher.cpp 96 BamgMesher_python_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 97 97 98 98 ContourToMesh_python_la_SOURCES = ../ContourToMesh/ContourToMesh.cpp 99 99 ContourToMesh_python_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB)
Note:
See TracBrowser
for help on using the repository browser.