source:
issm/oecreview/Archive/18296-19100/ISSM-19046-19047.diff
Last change on this file was 19102, checked in by , 10 years ago | |
---|---|
File size: 51.9 KB |
-
../trunk-jpl/src/c/modules/modules.h
11 11 #include "./Bamgx/Bamgx.h" 12 12 #include "./BamgConvertMeshx/BamgConvertMeshx.h" 13 13 #include "./BamgTriangulatex/BamgTriangulatex.h" 14 #include "./Calvingx/Calvingx.h" 14 15 #include "./Chacox/Chacox.h" 15 16 #include "./ConfigureObjectsx/ConfigureObjectsx.h" 16 17 #include "./ContourToMeshx/ContourToMeshx.h" -
../trunk-jpl/src/c/modules/Calvingx/Calvingx.h
1 #ifndef _CALVINGX_H 2 #define _CALVINGX_H 3 4 #include "../../classes/classes.h" 5 #include "../../analyses/analyses.h" 6 7 /* local prototypes: */ 8 void Calvingx(FemModel* femmodel); 9 10 #endif -
../trunk-jpl/src/c/modules/Calvingx/Calvingx.cpp
1 /*!\file Calvingx 2 * \brief: compute inverse method gradient 3 */ 4 5 #include "./Calvingx.h" 6 #include "../../shared/shared.h" 7 #include "../../toolkits/toolkits.h" 8 9 void Calvingx(FemModel* femmodel){ 10 11 /*Recover Calving law Enum*/ 12 int calvinglaw; 13 femmodel->parameters->FindParam(&calvinglaw,CalvingLawEnum); 14 15 /*Calculate calving rate*/ 16 switch(calvinglaw){ 17 case DefaultCalvingEnum: 18 break; 19 case CalvingLevermannEnum: 20 if(VerboseModule()) _printf0_(" computing Levermann's calving rate\n"); 21 femmodel->StrainRateparallelx(); 22 femmodel->StrainRateperpendicularx(); 23 femmodel->CalvingRateLevermannx(); 24 break; 25 case CalvingPiEnum: 26 if(VerboseModule()) _printf0_(" computing Pi's calving rate\n"); 27 femmodel->StrainRateparallelx(); 28 femmodel->DeviatoricStressx(); 29 femmodel->CalvingRatePix(); 30 break; 31 case CalvingDevEnum: 32 femmodel->CalvingRateDevx(); 33 femmodel->ElementOperationx(&Element::CalvingRateDev); 34 break; 35 default: 36 _error_("Caving law "<<EnumToStringx(calvinglaw)<<" not supported yet"); 37 } 38 } -
../trunk-jpl/src/c/modules/Calvingx
-
../trunk-jpl/src/c/modules/ExpToLevelSetx
Property changes on: ../trunk-jpl/src/c/modules/Calvingx ___________________________________________________________________ Added: svn:ignore ## -0,0 +1,2 ## +.deps +.dirstamp
-
../trunk-jpl/src/c/modules
Property changes on: ../trunk-jpl/src/c/modules/ExpToLevelSetx ___________________________________________________________________ Modified: svn:ignore ## -1 +1,2 ## .deps +.dirstamp
-
../trunk-jpl/src/c/Makefile.am
Property changes on: ../trunk-jpl/src/c/modules ___________________________________________________________________ Added: svn:ignore ## -0,0 +1 ## +.deps
14 14 15 15 #Core sources 16 16 #Core sources{{{ 17 issm_sources = ./datastructures/DataSet.h\ 18 ./datastructures/DataSet.cpp\ 19 ./datastructures/Object.h\ 20 ./datastructures/datastructures.h\ 21 ./classes/classes.h\ 22 ./classes/gauss/Gauss.h\ 23 ./classes/gauss/GaussSeg.h\ 17 issm_sources = ./datastructures/DataSet.cpp\ 24 18 ./classes/gauss/GaussSeg.cpp\ 25 ./classes/gauss/GaussTria.h\26 19 ./classes/gauss/GaussTria.cpp\ 27 ./classes/gauss/GaussTetra.h\28 20 ./classes/gauss/GaussTetra.cpp\ 29 ./classes/gauss/GaussPenta.h\30 21 ./classes/gauss/GaussPenta.cpp\ 31 ./classes/Update.h\32 ./classes/FemModel.h\33 22 ./classes/FemModel.cpp\ 34 ./classes/Material.h\35 ./classes/Load.h\36 ./classes/Contour.h\37 ./classes/Loads/Friction.h\38 23 ./classes/Loads/Friction.cpp\ 39 ./classes/Inputs/TransientInput.h\40 24 ./classes/Inputs/TransientInput.cpp\ 41 25 ./classes/Constraints/SpcTransient.cpp\ 42 ./classes/Constraints/SpcTransient.h\43 ./classes/IndependentObject.h\44 26 ./classes/IndependentObject.cpp\ 45 ./classes/DependentObject.h\46 27 ./classes/DependentObject.cpp\ 47 ./classes/DofIndexing.h\48 28 ./classes/DofIndexing.cpp\ 49 ./classes/IoModel.h\50 29 ./classes/IoModel.cpp\ 51 ./classes/Contours.h\52 30 ./classes/Contours.cpp\ 53 ./classes/Nodes.h\54 31 ./classes/Nodes.cpp\ 55 ./classes/Vertices.h\56 32 ./classes/Vertices.cpp\ 57 ./classes/Node.h\58 33 ./classes/Node.cpp\ 59 ./classes/Segment.h\60 ./classes/Vertex.h\61 34 ./classes/Vertex.cpp\ 62 ./classes/Hook.h\63 35 ./classes/Hook.cpp\ 64 ./classes/ExternalResults/Results.h\65 36 ./classes/ExternalResults/Results.cpp\ 66 ./classes/ExternalResults/ExternalResult.h\67 ./classes/ExternalResults/GenericExternalResult.h\68 ./classes/Elements/Element.h\69 37 ./classes/Elements/Element.cpp\ 70 ./classes/Elements/Elements.h\71 38 ./classes/Elements/Elements.cpp\ 72 ./classes/Elements/ElementHook.h\73 39 ./classes/Elements/ElementHook.cpp\ 74 ./classes/Elements/Seg.h\75 40 ./classes/Elements/Seg.cpp\ 76 ./classes/Elements/SegRef.h\77 41 ./classes/Elements/SegRef.cpp\ 78 ./classes/Elements/Tria.h\79 42 ./classes/Elements/Tria.cpp\ 80 ./classes/Elements/TriaRef.h\81 43 ./classes/Elements/TriaRef.cpp\ 82 ./classes/Elements/Tetra.h\83 44 ./classes/Elements/Tetra.cpp\ 84 ./classes/Elements/TetraRef.h\85 45 ./classes/Elements/TetraRef.cpp\ 86 ./classes/Elements/Penta.h\87 46 ./classes/Elements/Penta.cpp\ 88 ./classes/Elements/PentaRef.h\89 47 ./classes/Elements/PentaRef.cpp\ 90 ./classes/Inputs/Inputs.h\91 48 ./classes/Inputs/Inputs.cpp\ 92 ./classes/Inputs/Input.h\93 ./classes/Inputs/InputLocal.h\94 ./classes/Inputs/SegInput.h\95 49 ./classes/Inputs/SegInput.cpp\ 96 ./classes/Inputs/TriaInput.h\97 50 ./classes/Inputs/TriaInput.cpp\ 98 ./classes/Inputs/BoolInput.h\99 51 ./classes/Inputs/BoolInput.cpp\ 100 ./classes/Inputs/IntInput.h\101 52 ./classes/Inputs/IntInput.cpp\ 102 ./classes/Inputs/DoubleInput.h\103 53 ./classes/Inputs/DoubleInput.cpp\ 104 ./classes/Inputs/DatasetInput.h\105 54 ./classes/Inputs/DatasetInput.cpp\ 106 ./classes/Materials/Materials.h\107 55 ./classes/Materials/Materials.cpp\ 108 ./classes/Materials/Matice.h\109 56 ./classes/Materials/Matice.cpp\ 110 ./classes/Materials/Matseaice.h\111 57 ./classes/Materials/Matseaice.cpp\ 112 ./classes/Materials/Matpar.h\113 58 ./classes/Materials/Matpar.cpp\ 114 ./classes/Constraints/Constraints.h\115 59 ./classes/Constraints/Constraints.cpp\ 116 ./classes/Constraints/Constraint.h\117 60 ./classes/Constraints/SpcStatic.cpp\ 118 ./classes/Constraints/SpcStatic.h\119 61 ./classes/Constraints/SpcDynamic.cpp\ 120 ./classes/Constraints/SpcDynamic.h\121 ./classes/Loads/Loads.h\122 62 ./classes/Loads/Loads.cpp\ 123 63 ./classes/Loads/Penpair.cpp\ 124 ./classes/Loads/Penpair.h\125 64 ./classes/Loads/Pengrid.cpp\ 126 ./classes/Loads/Pengrid.h\127 65 ./classes/Loads/Numericalflux.cpp\ 128 ./classes/Loads/Numericalflux.h\129 ./classes/matrix/matrixobjects.h\130 ./classes/matrix/ElementMatrix.h\131 66 ./classes/matrix/ElementMatrix.cpp\ 132 ./classes/matrix/ElementVector.h\133 67 ./classes/matrix/ElementVector.cpp\ 134 ./classes/Params/Parameters.h\135 68 ./classes/Params/Parameters.cpp\ 136 ./classes/Params/Param.h\137 ./classes/Params/GenericParam.h\138 69 ./classes/Params/BoolParam.cpp\ 139 ./classes/Params/BoolParam.h\140 70 ./classes/Params/IntParam.cpp\ 141 ./classes/Params/IntParam.h\142 71 ./classes/Params/IntVecParam.cpp\ 143 ./classes/Params/IntVecParam.h\144 72 ./classes/Params/IntMatParam.cpp\ 145 ./classes/Params/IntMatParam.h\146 73 ./classes/Params/DoubleParam.cpp\ 147 ./classes/Params/DoubleParam.h\148 74 ./classes/Params/FileParam.cpp\ 149 ./classes/Params/FileParam.h\150 75 ./classes/Params/StringArrayParam.cpp\ 151 ./classes/Params/StringArrayParam.h\152 76 ./classes/Params/DoubleMatParam.cpp\ 153 ./classes/Params/DoubleMatParam.h\154 77 ./classes/Params/DoubleTransientMatParam.cpp\ 155 ./classes/Params/DoubleTransientMatParam.h\156 78 ./classes/Params/DoubleMatArrayParam.cpp\ 157 ./classes/Params/DoubleMatArrayParam.h\158 79 ./classes/Params/DoubleVecParam.cpp\ 159 ./classes/Params/DoubleVecParam.h\160 80 ./classes/Params/StringParam.cpp\ 161 ./classes/Params/StringParam.h\162 ./classes/Params/MatrixParam.h\163 81 ./classes/Params/MatrixParam.cpp\ 164 ./classes/Params/VectorParam.h\165 82 ./classes/Params/VectorParam.cpp\ 166 ./classes/Params/TransientParam.h\167 83 ./classes/Params/TransientParam.cpp\ 168 ./classes/Params/DataSetParam.h\169 84 ./classes/Params/DataSetParam.cpp\ 170 ./classes/Profiler.h\171 85 ./classes/Profiler.cpp\ 172 ./shared/shared.h\173 ./shared/MemOps/MemOps.h\174 86 ./shared/MemOps/MemOps.cpp\ 175 ./shared/Matrix/matrix.h\176 87 ./shared/Matrix/MatrixUtils.cpp\ 177 ./shared/io/io.h\178 ./shared/io/Disk/diskio.h\179 88 ./shared/io/Disk/pfopen.cpp\ 180 89 ./shared/io/Disk/pfclose.cpp\ 181 90 ./shared/io/Disk/WriteLockFile.cpp\ 182 91 ./shared/io/Print/PrintfFunction.cpp\ 183 ./shared/io/Print/Print.h\184 ./shared/io/Comm/IssmComm.h\185 92 ./shared/io/Comm/IssmComm.cpp\ 186 93 ./shared/LatLong/Ll2xyx.cpp\ 187 94 ./shared/LatLong/Xy2llx.cpp\ 188 ./shared/FSanalyticals/fsanalyticals.h\189 95 ./shared/FSanalyticals/fsanalyticals.cpp\ 190 ./shared/Enum/Enum.h\191 ./shared/Enum/EnumDefinitions.h\192 96 ./shared/Enum/EnumToStringx.cpp\ 193 97 ./shared/Enum/StringToEnumx.cpp\ 194 ./shared/Numerics/numerics.h\195 ./shared/Numerics/types.h\196 ./shared/Numerics/constants.h\197 ./shared/Numerics/Verbosity.h\198 98 ./shared/Numerics/Verbosity.cpp\ 199 ./shared/Numerics/GaussPoints.h\200 99 ./shared/Numerics/GaussPoints.cpp\ 201 100 ./shared/Numerics/cross.cpp\ 202 ./shared/Numerics/isnan.h\203 101 ./shared/Numerics/isnan.cpp\ 204 102 ./shared/Numerics/cubic.cpp\ 205 103 ./shared/Numerics/NewtonSolveDnorm.cpp\ 206 104 ./shared/Numerics/extrema.cpp\ 207 105 ./shared/Numerics/XZvectorsToCoordinateSystem.cpp\ 208 ./shared/Numerics/OptPars.h\209 ./shared/Exceptions/exceptions.h\210 106 ./shared/Exceptions/Exceptions.cpp\ 211 107 ./shared/Sorting/binary_search.cpp\ 212 ./shared/Sorting/sorting.h\213 ./shared/Elements/elements.h\214 108 ./shared/Elements/Cuffey.cpp\ 215 109 ./shared/Elements/StressIntensityIntegralWeight.cpp\ 216 110 ./shared/Elements/Paterson.cpp\ … … 221 115 ./shared/Elements/ComputeDelta18oTemperaturePrecipitation.cpp\ 222 116 ./shared/Elements/ComputeMungsmTemperaturePrecipitation.cpp\ 223 117 ./shared/Elements/DrainageFunctionWaterfraction.cpp\ 224 ./shared/String/sharedstring.h\225 118 ./shared/String/DescriptorIndex.cpp\ 226 ./toolkits/metis/metisincludes.h\227 ./toolkits/issm/issmtoolkit.h\228 ./toolkits/issm/IssmToolkitUtils.h\229 119 ./toolkits/issm/IssmToolkitUtils.cpp\ 230 ./toolkits/issm/IssmAbsMat.h\231 ./toolkits/issm/IssmAbsVec.h\232 ./toolkits/issm/IssmDenseMat.h\233 ./toolkits/issm/IssmMat.h\234 ./toolkits/issm/IssmSeqVec.h\235 ./toolkits/issm/IssmVec.h\236 ./toolkits/issm/IssmSolver.h\237 120 ./toolkits/issm/IssmSolver.cpp\ 238 ./toolkits/issm/SparseRow.h\239 ./toolkits/issm/Bucket.h\240 ./toolkits/mpi/issmmpi.h\241 121 ./toolkits/mpi/issmmpi.cpp\ 242 ./toolkits/mpi/commops/commops.h\243 122 ./toolkits/mpi/commops/DetermineLocalSize.cpp\ 244 123 ./toolkits/mpi/commops/DetermineGlobalSize.cpp\ 245 124 ./toolkits/mpi/commops/DetermineRowRankFromLocalSize.cpp\ 246 125 ./toolkits/mpi/commops/GetOwnershipBoundariesFromRange.cpp\ 247 ./toolkits/adolc/adolcincludes.h\248 ./toolkits/adolc/AdolcEdf.h\249 ./toolkits/ToolkitOptions.h\250 126 ./toolkits/ToolkitOptions.cpp\ 251 ./toolkits/triangle/triangleincludes.h\252 ./toolkits/objects/toolkitobjects.h\253 ./toolkits/objects/Matrix.h\254 ./toolkits/objects/Vector.h\255 ./toolkits/objects/Solver.h\256 ./toolkitsenums.h\257 ./toolkits.h\258 ./modules/ModelProcessorx/ModelProcessorx.h\259 127 ./modules/ModelProcessorx/ModelProcessorx.cpp\ 260 128 ./modules/ModelProcessorx/ElementsAndVerticesPartitioning.cpp\ 261 129 ./modules/ModelProcessorx/NodesPartitioning.cpp\ … … 269 137 ./modules/ModelProcessorx/CreateNumberNodeToElementConnectivity.cpp\ 270 138 ./modules/ModelProcessorx/CreateElementsVerticesAndMaterials.cpp\ 271 139 ./modules/ModelProcessorx/CreateNodes.cpp\ 272 ./modules/ParseToolkitsOptionsx/ParseToolkitsOptionsx.h\273 140 ./modules/ParseToolkitsOptionsx/ParseToolkitsOptionsx.cpp\ 274 ./modules/NodesDofx/NodesDofx.h\275 141 ./modules/NodesDofx/NodesDofx.cpp\ 276 ./modules/NodalValuex/NodalValuex.h\277 142 ./modules/NodalValuex/NodalValuex.cpp\ 278 ./modules/VerticesDofx/VerticesDofx.h\279 143 ./modules/VerticesDofx/VerticesDofx.cpp\ 280 ./modules/VertexCoordinatesx/VertexCoordinatesx.h\281 144 ./modules/VertexCoordinatesx/VertexCoordinatesx.cpp\ 282 ./modules/OutputResultsx/OutputResultsx.h\283 145 ./modules/OutputResultsx/OutputResultsx.cpp\ 284 ./modules/InputDepthAverageAtBasex/InputDepthAverageAtBasex.h\285 146 ./modules/InputDepthAverageAtBasex/InputDepthAverageAtBasex.cpp\ 286 ./modules/InputDuplicatex/InputDuplicatex.h\287 147 ./modules/InputDuplicatex/InputDuplicatex.cpp\ 288 ./modules/InputExtrudex/InputExtrudex.h\289 148 ./modules/InputExtrudex/InputExtrudex.cpp\ 290 ./modules/InputScalex/InputScalex.h\291 149 ./modules/InputScalex/InputScalex.cpp\ 292 ./modules/SurfaceAreax/SurfaceAreax.h\293 150 ./modules/SurfaceAreax/SurfaceAreax.cpp\ 294 ./modules/AllocateSystemMatricesx/AllocateSystemMatricesx.h\295 151 ./modules/AllocateSystemMatricesx/AllocateSystemMatricesx.cpp\ 296 ./modules/CreateJacobianMatrixx/CreateJacobianMatrixx.h\297 152 ./modules/CreateJacobianMatrixx/CreateJacobianMatrixx.cpp\ 298 ./modules/SystemMatricesx/SystemMatricesx.h\299 153 ./modules/SystemMatricesx/SystemMatricesx.cpp\ 300 ./modules/CreateNodalConstraintsx/CreateNodalConstraintsx.h\301 154 ./modules/CreateNodalConstraintsx/CreateNodalConstraintsx.cpp\ 302 ./modules/UpdateDynamicConstraintsx/UpdateDynamicConstraintsx.h\303 155 ./modules/UpdateDynamicConstraintsx/UpdateDynamicConstraintsx.cpp\ 304 ./modules/IoModelToConstraintsx/IoModelToConstraintsx.h\305 156 ./modules/IoModelToConstraintsx/IoModelToConstraintsx.cpp\ 306 ./modules/SetActiveNodesLSMx/SetActiveNodesLSMx.h\307 157 ./modules/SetActiveNodesLSMx/SetActiveNodesLSMx.cpp\ 308 ./modules/InputUpdateFromConstantx/InputUpdateFromConstantx.h\309 158 ./modules/InputUpdateFromConstantx/InputUpdateFromConstantx.cpp\ 310 ./modules/InputUpdateFromSolutionx/InputUpdateFromSolutionx.h\311 159 ./modules/InputUpdateFromSolutionx/InputUpdateFromSolutionx.cpp\ 312 ./modules/GetSolutionFromInputsx/GetSolutionFromInputsx.h\313 160 ./modules/GetSolutionFromInputsx/GetSolutionFromInputsx.cpp\ 314 ./modules/GetVectorFromInputsx/GetVectorFromInputsx.h\315 161 ./modules/GetVectorFromInputsx/GetVectorFromInputsx.cpp\ 316 ./modules/InputUpdateFromVectorx/InputUpdateFromVectorx.h\317 162 ./modules/InputUpdateFromVectorx/InputUpdateFromVectorx.cpp\ 318 ./modules/FloatingiceMeltingRatex/FloatingiceMeltingRatex.h\319 163 ./modules/FloatingiceMeltingRatex/FloatingiceMeltingRatex.cpp\ 320 ./modules/ConfigureObjectsx/ConfigureObjectsx.h\321 164 ./modules/ConfigureObjectsx/ConfigureObjectsx.cpp\ 322 ./modules/SpcNodesx/SpcNodesx.h\323 165 ./modules/SpcNodesx/SpcNodesx.cpp\ 324 ./modules/SurfaceMassBalancex/SurfaceMassBalancex.h\325 166 ./modules/SurfaceMassBalancex/SurfaceMassBalancex.cpp\ 326 ./modules/MeshPartitionx/MeshPartitionx.h\327 167 ./modules/Reducevectorgtofx/Reducevectorgtofx.cpp\ 328 ./modules/Reducevectorgtofx/Reducevectorgtofx.h\329 ./modules/Reduceloadx/Reduceloadx.h\330 168 ./modules/Reduceloadx/Reduceloadx.cpp\ 331 169 ./modules/ConstraintsStatex/ConstraintsStatex.cpp\ 332 ./modules/ConstraintsStatex/ConstraintsStatex.h\333 ./modules/ConstraintsStatex/ConstraintsStateLocal.h\334 ./modules/ResetConstraintsx/ResetConstraintsx.h\335 170 ./modules/ResetConstraintsx/ResetConstraintsx.cpp\ 336 ./modules/ResetFSBasalBoundaryConditionx/ResetFSBasalBoundaryConditionx.h\337 171 ./modules/ResetFSBasalBoundaryConditionx/ResetFSBasalBoundaryConditionx.cpp\ 338 172 ./modules/Solverx/Solverx.cpp\ 339 ./modules/Solverx/Solverx.h\340 173 ./modules/VecMergex/VecMergex.cpp\ 341 ./modules/VecMergex/VecMergex.h\342 174 ./modules/Mergesolutionfromftogx/Mergesolutionfromftogx.cpp\ 343 ./modules/Mergesolutionfromftogx/Mergesolutionfromftogx.h\344 175 ./cores/ProcessArguments.cpp\ 345 176 ./cores/ResetBoundaryConditions.cpp\ 346 177 ./cores/WrapperCorePointerFromSolutionEnum.cpp\ … … 349 180 ./cores/adgradient_core.cpp\ 350 181 ./main/EnvironmentInit.cpp\ 351 182 ./main/EnvironmentFinalize.cpp\ 352 ./analyses/EnumToAnalysis.h\353 183 ./analyses/EnumToAnalysis.cpp\ 354 ./analyses/Analysis.h\355 184 ./solutionsequences/solutionsequence_la.cpp\ 356 185 ./solutionsequences/solutionsequence_la_theta.cpp\ 357 186 ./solutionsequences/solutionsequence_linear.cpp\ … … 359 188 ./solutionsequences/solutionsequence_newton.cpp\ 360 189 ./solutionsequences/solutionsequence_fct.cpp\ 361 190 ./solutionsequences/convergence.cpp\ 362 ./classes/Options/Options.h\363 191 ./classes/Options/Options.cpp\ 364 ./classes/Options/Option.h\365 ./classes/Options/GenericOption.h\366 192 ./classes/Options/OptionUtilities.cpp\ 367 ./classes/Options/OptionUtilities.h\368 193 ./classes/RiftStruct.cpp\ 369 ./classes/RiftStruct.h\370 194 ./modules/ModelProcessorx/Transient/UpdateElementsTransient.cpp \ 371 195 ./cores/transient_core.cpp\ 372 196 ./cores/steadystate_core.cpp\ … … 377 201 ./cores/thermal_core.cpp\ 378 202 ./solutionsequences/solutionsequence_thermal_nonlinear.cpp\ 379 203 ./modules/ControlInputSetGradientx/ControlInputSetGradientx.cpp\ 380 ./modules/ControlInputSetGradientx/ControlInputSetGradientx.h\381 204 ./modules/GetVectorFromControlInputsx/GetVectorFromControlInputsx.cpp\ 382 ./modules/GetVectorFromControlInputsx/GetVectorFromControlInputsx.h\383 205 ./modules/SetControlInputsFromVectorx/SetControlInputsFromVectorx.cpp\ 384 ./modules/SetControlInputsFromVectorx/SetControlInputsFromVectorx.h\385 206 ./modules/ModelProcessorx/Control/CreateParametersControl.cpp\ 386 207 ./modules/ModelProcessorx/Control/UpdateElementsAndMaterialsControl.cpp\ 387 ./modules/InputControlUpdatex/InputControlUpdatex.h\388 208 ./modules/InputControlUpdatex/InputControlUpdatex.cpp\ 389 ./modules/SurfaceAbsVelMisfitx/SurfaceAbsVelMisfitx.h\390 209 ./modules/SurfaceAbsVelMisfitx/SurfaceAbsVelMisfitx.cpp\ 391 ./modules/SurfaceRelVelMisfitx/SurfaceRelVelMisfitx.h\392 210 ./modules/SurfaceRelVelMisfitx/SurfaceRelVelMisfitx.cpp\ 393 ./modules/SurfaceLogVelMisfitx/SurfaceLogVelMisfitx.h\394 211 ./modules/SurfaceLogVelMisfitx/SurfaceLogVelMisfitx.cpp\ 395 ./modules/SurfaceLogVxVyMisfitx/SurfaceLogVxVyMisfitx.h\396 212 ./modules/SurfaceLogVxVyMisfitx/SurfaceLogVxVyMisfitx.cpp\ 397 ./modules/SurfaceAverageVelMisfitx/SurfaceAverageVelMisfitx.h\398 213 ./modules/SurfaceAverageVelMisfitx/SurfaceAverageVelMisfitx.cpp\ 399 ./modules/ThicknessAbsMisfitx/ThicknessAbsMisfitx.h\400 214 ./modules/ThicknessAbsMisfitx/ThicknessAbsMisfitx.cpp\ 401 ./modules/Gradjx/Gradjx.h\402 215 ./modules/Gradjx/Gradjx.cpp\ 403 216 ./modules/DragCoefficientAbsGradientx/DragCoefficientAbsGradientx.cpp\ 404 ./modules/DragCoefficientAbsGradientx/DragCoefficientAbsGradientx.h\405 217 ./modules/ThicknessAlongGradientx/ThicknessAlongGradientx.cpp\ 406 ./modules/ThicknessAlongGradientx/ThicknessAlongGradientx.h\407 218 ./modules/ThicknessAcrossGradientx/ThicknessAcrossGradientx.cpp\ 408 ./modules/ThicknessAcrossGradientx/ThicknessAcrossGradientx.h\409 219 ./modules/RheologyBbarAbsGradientx/RheologyBbarAbsGradientx.cpp\ 410 ./modules/RheologyBbarAbsGradientx/RheologyBbarAbsGradientx.h\411 220 ./modules/RheologyBAbsGradientx/RheologyBAbsGradientx.cpp\ 412 ./modules/RheologyBAbsGradientx/RheologyBAbsGradientx.h\413 ./classes/Inputs/ControlInput.h\414 221 ./classes/Inputs/ControlInput.cpp\ 415 222 ./shared/Numerics/BrentSearch.cpp\ 416 223 ./cores/control_core.cpp\ … … 439 246 ./modules/GroundinglineMigrationx/GroundinglineMigrationx.cpp\ 440 247 ./classes/Loads/Riftfront.cpp\ 441 248 ./modules/ConstraintsStatex/RiftConstraintsState.cpp\ 442 ./classes/Massfluxatgate.h \443 ./classes/Misfit.h \444 ./classes/Masscon.h \445 249 ./modules/ModelProcessorx/CreateOutputDefinitions.cpp\ 446 ./modules/OutputDefinitionsResponsex/OutputDefinitionsResponsex.h\447 250 ./modules/OutputDefinitionsResponsex/OutputDefinitionsResponsex.cpp\ 448 ./classes/Inputs/PentaInput.h\449 251 ./classes/Inputs/PentaInput.cpp\ 450 ./classes/Inputs/TetraInput.h\ 451 ./classes/Inputs/TetraInput.cpp\ 452 #}}} 252 ./classes/Inputs/TetraInput.cpp 253 #}}} 453 254 #DAKOTA sources {{{ 454 255 if DAKOTA 455 issm_sources += ./modules/InputUpdateFromDakotax/InputUpdateFromDakotax.h\ 456 ./modules/InputUpdateFromDakotax/InputUpdateFromDakotax.cpp\ 457 ./modules/InputUpdateFromVectorDakotax/InputUpdateFromVectorDakotax.h\ 256 issm_sources += ./modules/InputUpdateFromDakotax/InputUpdateFromDakotax.cpp\ 458 257 ./modules/InputUpdateFromVectorDakotax/InputUpdateFromVectorDakotax.cpp\ 459 ./modules/InputUpdateFromMatrixDakotax/InputUpdateFromMatrixDakotax.h\460 258 ./modules/InputUpdateFromMatrixDakotax/InputUpdateFromMatrixDakotax.cpp\ 461 259 ./modules/AverageOntoPartitionx/AverageOntoPartitionx.cpp\ 462 ./modules/AverageOntoPartitionx/AverageOntoPartitionx.h\463 260 ./modules/ModelProcessorx/Dakota/CreateParametersDakota.cpp\ 464 261 ./modules/ModelProcessorx/Dakota/UpdateElementsAndMaterialsDakota.cpp\ 465 262 ./cores/dakota_core.cpp\ 466 ./cores/DakotaSpawnCore.h\467 263 ./cores/DakotaSpawnCore.cpp 468 264 endif 469 265 #}}} 470 266 #BAMG sources {{{ 471 267 if BAMG 472 issm_sources += ./bamg/bamgobjects.h\ 473 ./bamg/BamgGeom.h\ 474 ./bamg/BamgGeom.cpp\ 475 ./bamg/BamgMesh.h\ 268 issm_sources += ./bamg/BamgGeom.cpp\ 476 269 ./bamg/BamgMesh.cpp\ 477 ./bamg/BamgOpts.h\478 270 ./bamg/BamgOpts.cpp\ 479 ./bamg/CrackedEdge.h\480 271 ./bamg/CrackedEdge.cpp\ 481 ./bamg/Curve.h\482 272 ./bamg/Curve.cpp\ 483 ./bamg/Direction.h\484 273 ./bamg/Direction.cpp\ 485 ./bamg/DoubleAndInt.h\486 ./bamg/Edge.h\487 274 ./bamg/Edge.cpp\ 488 ./bamg/GeomEdge.h\489 275 ./bamg/GeomEdge.cpp\ 490 ./bamg/GeomSubDomain.h\491 276 ./bamg/GeomSubDomain.cpp\ 492 ./bamg/GeomVertex.h\493 277 ./bamg/GeomVertex.cpp\ 494 278 ./bamg/Geometry.cpp\ 495 ./bamg/Geometry.h\496 279 ./bamg/ListofIntersectionTriangles.cpp\ 497 ./bamg/ListofIntersectionTriangles.h\498 280 ./bamg/EigenMetric.cpp\ 499 281 ./bamg/Metric.cpp\ 500 ./bamg/Metric.h\501 282 ./bamg/BamgQuadtree.cpp\ 502 ./bamg/BamgQuadtree.h\503 ./bamg/R2.h\504 283 ./bamg/SetOfE4.cpp\ 505 ./bamg/SetOfE4.h\506 ./bamg/SubDomain.h\507 284 ./bamg/SubDomain.cpp\ 508 ./bamg/AdjacentTriangle.h\509 285 ./bamg/AdjacentTriangle.cpp\ 510 286 ./bamg/Triangle.cpp\ 511 ./bamg/det.h \512 ./bamg/Triangle.h\513 287 ./bamg/BamgVertex.cpp\ 514 ./bamg/BamgVertex.h\515 ./bamg/VertexOnEdge.h\516 288 ./bamg/VertexOnEdge.cpp\ 517 ./bamg/VertexOnGeom.h\518 289 ./bamg/VertexOnGeom.cpp\ 519 ./bamg/VertexOnVertex.h\520 290 ./bamg/VertexOnVertex.cpp\ 521 291 ./bamg/Mesh.cpp\ 522 ./bamg/Mesh.h\523 ./shared/Bamg/Abs.h \524 ./shared/Bamg/BigPrimeNumber.h\525 292 ./shared/Bamg/BigPrimeNumber.cpp\ 526 ./shared/Bamg/BinaryRand.h \527 ./shared/Bamg/Exchange.h \528 ./shared/Bamg/extrema.h \529 ./shared/Bamg/HeapSort.h \530 ./shared/Bamg/OppositeAngle.h \531 293 ./modules/Bamgx/Bamgx.cpp\ 532 ./modules/Bamgx/Bamgx.h\533 294 ./modules/BamgConvertMeshx/BamgConvertMeshx.cpp\ 534 ./modules/BamgConvertMeshx/BamgConvertMeshx.h\ 535 ./modules/BamgTriangulatex/BamgTriangulatex.cpp\ 536 ./modules/BamgTriangulatex/BamgTriangulatex.h 295 ./modules/BamgTriangulatex/BamgTriangulatex.cpp 537 296 endif 538 297 #}}} 539 298 #Petsc sources {{{ 540 299 if PETSC 541 300 issm_sources += ./toolkits/petsc\ 542 301 ./toolkits/petsc/patches\ 543 ./toolkits/petsc/patches/SolverEnum.h\544 ./toolkits/petsc/patches/petscpatches.h\545 302 ./toolkits/petsc/patches/VecToMPISerial.cpp\ 546 303 ./toolkits/petsc/patches/MatToSerial.cpp\ 547 304 ./toolkits/petsc/patches/VecMerge.cpp\ … … 556 313 ./toolkits/petsc/patches/ISSMToPetscMatrixType.cpp\ 557 314 ./toolkits/petsc/patches/ISSMToPetscInsertMode.cpp\ 558 315 ./toolkits/petsc/patches/ISSMToPetscNormMode.cpp\ 559 ./toolkits/petsc/objects/petscobjects.h\560 ./toolkits/petsc/objects/PetscMat.h\561 316 ./toolkits/petsc/objects/PetscMat.cpp\ 562 ./toolkits/petsc/objects/PetscVec.h\563 317 ./toolkits/petsc/objects/PetscVec.cpp\ 564 ./toolkits/petsc/objects/PetscSolver.cpp\ 565 ./toolkits/petsc/objects/PetscSolver.h\ 566 ./toolkits/petsc/petscincludes.h 318 ./toolkits/petsc/objects/PetscSolver.cpp 567 319 endif 568 320 #}}} 569 321 #Mumps sources {{{ 570 322 if MUMPS 571 issm_sources += ./toolkits/mumps\ 572 ./toolkits/mumps/mumpsincludes.h\ 573 ./toolkits/mumps/MumpsSolve.cpp 323 issm_sources += ./toolkits/mumps/MumpsSolve.cpp 574 324 endif 575 325 #}}} 576 326 #Gsl sources {{{ 577 327 if GSL 578 issm_sources += ./toolkits/gsl\ 579 ./toolkits/gsl/gslincludes.h\ 580 ./toolkits/gsl/DenseGslSolve.cpp 328 issm_sources += ./toolkits/gsl/DenseGslSolve.cpp 581 329 endif 582 330 #}}} 583 331 #proj.4 sources {{{ … … 676 424 endif 677 425 if LEVELSET 678 426 issm_sources += ./analyses/LevelsetAnalysis.cpp 427 issm_sources += ./modules/Calvingx/Calvingx.cpp 679 428 endif 680 429 if EXTRAPOLATION 681 430 issm_sources += ./analyses/ExtrapolationAnalysis.cpp … … 698 447 ./modules/GiaDeflectionCorex/what0.f 699 448 endif 700 449 #}}} 701 #Mpi sources {{{702 if MPI703 issm_sources += ./toolkits/issm/IssmMpiDenseMat.h\704 ./toolkits/issm/IssmMpiVec.h705 endif706 #}}}707 450 #Metis sources {{{ 708 451 if METIS 709 issm_sources += ./toolkits/metis/patches/metispatches.h\ 710 ./toolkits/metis/patches/METIS_PartMeshNodalPatch.cpp 452 issm_sources += ./toolkits/metis/patches/METIS_PartMeshNodalPatch.cpp 711 453 endif 712 454 #}}} 713 455 … … 716 458 717 459 #}}} 718 460 #Kml sources {{{ 719 kml_sources = ./modules/Exp2Kmlx/Exp2Kmlx.h\ 720 ./modules/Exp2Kmlx/Exp2Kmlx.cpp\ 721 ./modules/Kml2Expx/Kml2Expx.h\ 461 kml_sources = ./modules/Exp2Kmlx/Exp2Kmlx.cpp\ 722 462 ./modules/Kml2Expx/Kml2Expx.cpp\ 723 ./modules/Shp2Kmlx/Shp2Kmlx.h\724 463 ./modules/Shp2Kmlx/Shp2Kmlx.cpp\ 725 ./modules/KMLFileReadx/KMLFileReadx.h\726 464 ./modules/KMLFileReadx/KMLFileReadx.cpp\ 727 ./modules/KMLMeshWritex/KMLMeshWritex.h\728 465 ./modules/KMLMeshWritex/KMLMeshWritex.cpp\ 729 ./modules/KMLOverlayx/KMLOverlayx.h\730 466 ./modules/KMLOverlayx/KMLOverlayx.cpp\ 731 ./kml/kmlobjects.h\732 467 ./kml/KML_Attribute.cpp\ 733 ./kml/KML_Attribute.h\734 468 ./kml/KML_Comment.cpp\ 735 ./kml/KML_Comment.h\736 469 ./kml/KML_ColorStyle.cpp\ 737 ./kml/KML_ColorStyle.h\738 470 ./kml/KML_Container.cpp\ 739 ./kml/KML_Container.h\740 471 ./kml/KML_Document.cpp\ 741 ./kml/KML_Document.h\742 472 ./kml/KML_Feature.cpp\ 743 ./kml/KML_Feature.h\744 473 ./kml/KML_File.cpp\ 745 ./kml/KML_File.h\746 474 ./kml/KML_Folder.cpp\ 747 ./kml/KML_Folder.h\748 475 ./kml/KML_Geometry.cpp\ 749 ./kml/KML_Geometry.h\750 476 ./kml/KML_GroundOverlay.cpp\ 751 ./kml/KML_GroundOverlay.h\752 477 ./kml/KML_Icon.cpp\ 753 ./kml/KML_Icon.h\754 478 ./kml/KML_LatLonBox.cpp\ 755 ./kml/KML_LatLonBox.h\756 479 ./kml/KML_LinearRing.cpp\ 757 ./kml/KML_LinearRing.h\758 480 ./kml/KML_LineString.cpp\ 759 ./kml/KML_LineString.h\760 481 ./kml/KML_LineStyle.cpp\ 761 ./kml/KML_LineStyle.h\762 482 ./kml/KML_MultiGeometry.cpp\ 763 ./kml/KML_MultiGeometry.h\764 483 ./kml/KML_Object.cpp\ 765 ./kml/KML_Object.h\766 484 ./kml/KML_Overlay.cpp\ 767 ./kml/KML_Overlay.h\768 485 ./kml/KML_Point.cpp\ 769 ./kml/KML_Point.h\770 486 ./kml/KML_Placemark.cpp\ 771 ./kml/KML_Placemark.h\772 487 ./kml/KML_Polygon.cpp\ 773 ./kml/KML_Polygon.h\774 488 ./kml/KML_PolyStyle.cpp\ 775 ./kml/KML_PolyStyle.h\776 489 ./kml/KML_Style.cpp\ 777 ./kml/KML_Style.h\778 490 ./kml/KML_StyleSelector.cpp\ 779 ./kml/KML_StyleSelector.h\780 491 ./kml/KML_SubStyle.cpp\ 781 ./kml/KML_SubStyle.h\782 492 ./kml/KML_Unknown.cpp\ 783 ./kml/KML_Unknown.h\ 784 ./kml/KMLFileReadUtils.cpp\ 785 ./kml/KMLFileReadUtils.h 493 ./kml/KMLFileReadUtils.cpp 786 494 #}}} 787 495 #Modules sources{{{ 788 modules_sources= ./shared/Threads/issm_threads.h\ 789 ./shared/Threads/LaunchThread.cpp\ 496 modules_sources= ./shared/Threads/LaunchThread.cpp\ 790 497 ./shared/Threads/PartitionRange.cpp\ 791 ./shared/Exp/exp.h\792 498 ./shared/Exp/exp.cpp\ 793 ./shared/TriMesh/trimesh.h\794 499 ./shared/TriMesh/AssociateSegmentToElement.cpp\ 795 500 ./shared/TriMesh/GridInsideHole.cpp\ 796 501 ./shared/TriMesh/OrderSegments.cpp\ 797 502 ./shared/TriMesh/SplitMeshForRifts.cpp\ 798 503 ./shared/TriMesh/TriMeshUtils.cpp\ 799 ./modules/TriaSearchx/TriaSearchx.h\800 504 ./modules/TriaSearchx/TriaSearchx.cpp\ 801 ./modules/TriMeshx/TriMeshx.h\802 505 ./modules/TriMeshx/TriMeshx.cpp\ 803 ./modules/TriMeshProcessRiftsx/TriMeshProcessRiftsx.h\804 506 ./modules/TriMeshProcessRiftsx/TriMeshProcessRiftsx.cpp\ 805 ./modules/PointCloudFindNeighborsx/PointCloudFindNeighborsx.h\806 507 ./modules/PointCloudFindNeighborsx/PointCloudFindNeighborsx.cpp\ 807 508 ./modules/PointCloudFindNeighborsx/PointCloudFindNeighborsxt.cpp\ 808 509 ./modules/InterpFromGridToMeshx/InterpFromGridToMeshx.cpp\ 809 ./modules/InterpFromGridToMeshx/InterpFromGridToMeshx.h\810 510 ./modules/InterpFromMesh2dx/InterpFromMesh2dx.cpp\ 811 511 ./modules/InterpFromMesh2dx/InterpFromMesh2dxt.cpp\ 812 ./modules/InterpFromMesh2dx/InterpFromMesh2dx.h\813 512 ./modules/InterpFromMeshToMesh2dx/InterpFromMeshToMesh2dx.cpp\ 814 ./modules/InterpFromMeshToMesh2dx/InterpFromMeshToMesh2dx.h\815 513 ./modules/InterpFromMeshToMesh3dx/InterpFromMeshToMesh3dx.cpp\ 816 ./modules/InterpFromMeshToMesh3dx/InterpFromMeshToMesh3dx.h\817 514 ./modules/InterpFromMeshToGridx/InterpFromMeshToGridx.cpp\ 818 ./modules/InterpFromMeshToGridx/InterpFromMeshToGridx.h\819 515 ./modules/MeshProfileIntersectionx/MeshProfileIntersectionx.cpp\ 820 ./modules/MeshProfileIntersectionx/MeshProfileIntersectionx.h\821 516 ./modules/ContourToMeshx/ContourToMeshx.cpp\ 822 517 ./modules/ContourToMeshx/ContourToMeshxt.cpp\ 823 ./modules/ContourToMeshx/ContourToMeshx.h\824 518 ./modules/ExpToLevelSetx/ExpToLevelSetx.cpp\ 825 519 ./modules/ExpToLevelSetx/ExpToLevelSetxt.cpp\ 826 ./modules/ExpToLevelSetx/ExpToLevelSetx.h\827 520 ./modules/ContourToNodesx/ContourToNodesx.cpp\ 828 ./modules/ContourToNodesx/ContourToNodesx.h\829 521 ./modules/NodeConnectivityx/NodeConnectivityx.cpp\ 830 ./modules/NodeConnectivityx/NodeConnectivityx.h\831 522 ./modules/ElementConnectivityx/ElementConnectivityx.cpp\ 832 ./modules/ElementConnectivityx/ElementConnectivityx.h\ 833 ./modules/PropagateFlagsFromConnectivityx/PropagateFlagsFromConnectivityx.cpp\ 834 ./modules/PropagateFlagsFromConnectivityx/PropagateFlagsFromConnectivityx.h 523 ./modules/PropagateFlagsFromConnectivityx/PropagateFlagsFromConnectivityx.cpp 835 524 if CHACO 836 modules_sources+= ./modules/Chacox/Chacox.h\ 837 ./modules/Chacox/Chacox.cpp\ 525 modules_sources+= ./modules/Chacox/Chacox.cpp\ 838 526 ./modules/Chacox/input_parse.cpp\ 839 527 ./modules/Chacox/chaco_seconds.cpp\ 840 528 ./modules/Chacox/user_params.cpp 841 529 endif 842 530 if SCOTCH 843 modules_sources+= ./modules/Scotchx/Scotchx.cpp\ 844 ./modules/Scotchx/Scotchx.h 531 modules_sources+= ./modules/Scotchx/Scotchx.cpp 845 532 endif 846 533 #}}} 847 534 848 535 #kriging (WRAPPER and executable) 849 536 #Kriging sources {{{ 850 537 if KRIGING 851 issm_sources +=./classes/kriging/Observations.h\ 852 ./classes/kriging/Observations.cpp\ 853 ./classes/kriging/Variogram.h \ 854 ./classes/kriging/GaussianVariogram.h\ 538 issm_sources += ./classes/kriging/Observations.cpp\ 855 539 ./classes/kriging/GaussianVariogram.cpp\ 856 ./classes/kriging/ExponentialVariogram.h\857 540 ./classes/kriging/ExponentialVariogram.cpp\ 858 ./classes/kriging/SphericalVariogram.h\859 541 ./classes/kriging/SphericalVariogram.cpp\ 860 ./classes/kriging/PowerVariogram.h\861 542 ./classes/kriging/PowerVariogram.cpp\ 862 ./classes/kriging/Quadtree.h\863 543 ./classes/kriging/Quadtree.cpp\ 864 ./classes/kriging/Covertree.h\865 544 ./classes/kriging/Covertree.cpp\ 866 ./classes/kriging/Observation.h\867 545 ./classes/kriging/Observation.cpp\ 868 546 ./modules/Krigingx/pKrigingx.cpp 869 547 870 548 modules_sources +=./modules/Krigingx/Krigingx.cpp\ 871 ./modules/Krigingx/Krigingx.h\872 549 ./modules/Krigingx/pKrigingx.cpp 873 550 endif 874 551 #}}} … … 947 624 LDADD += $(FLIBS) $(FORTRANLIB) 948 625 endif 949 626 950 issm_SOURCES = main/issm. h main/globals.h main/issm.cpp627 issm_SOURCES = main/issm.cpp 951 628 issm_CXXFLAGS= -fPIC 952 629 953 630 if KRIGING 954 631 bin_PROGRAMS += kriging 955 kriging_SOURCES = main/ issm.h main/globals.h main/kriging.cpp632 kriging_SOURCES = main/kriging.cpp 956 633 kriging_CXXFLAGS= -fPIC $(CXXFLAGS) $(CXXOPTFLAGS) $(COPTFLAGS) 957 634 endif 958 635 #}}} -
../trunk-jpl/src/c/cores/transient_core.cpp
24 24 bool save_results,dakota_analysis; 25 25 bool time_adapt=false; 26 26 int output_frequency; 27 int domaintype,groundingline_migration ,calvinglaw;27 int domaintype,groundingline_migration; 28 28 int numoutputs = 0; 29 29 Analysis *analysis = NULL; 30 30 char** requested_outputs = NULL; … … 53 53 femmodel->parameters->FindParam(&ishydrology,TransientIshydrologyEnum); 54 54 femmodel->parameters->FindParam(&isFS,FlowequationIsFSEnum); 55 55 femmodel->parameters->FindParam(&iscalving,TransientIscalvingEnum); 56 femmodel->parameters->FindParam(&calvinglaw,CalvingLawEnum);57 56 if(isgroundingline) femmodel->parameters->FindParam(&groundingline_migration,GroundinglineMigrationEnum); 58 57 femmodel->parameters->FindParam(&numoutputs,TransientNumRequestedOutputsEnum); 59 58 if(numoutputs) femmodel->parameters->FindParam(&requested_outputs,&numoutputs,TransientRequestedOutputsEnum); … … 102 101 } 103 102 104 103 if(islevelset){ 105 if(iscalving){ 106 switch(calvinglaw){ 107 case DefaultCalvingEnum: 108 break; 109 case CalvingLevermannEnum: 110 if(VerboseSolution()) _printf0_(" computing Levermann's calving rate\n"); 111 femmodel->StrainRateparallelx(); 112 femmodel->StrainRateperpendicularx(); 113 femmodel->CalvingRateLevermannx(); 114 break; 115 case CalvingPiEnum: 116 if(VerboseSolution()) _printf0_(" computing Pi's calving rate\n"); 117 femmodel->StrainRateparallelx(); 118 femmodel->DeviatoricStressx(); 119 femmodel->CalvingRatePix(); 120 break; 121 case CalvingDevEnum: 122 femmodel->CalvingRateDevx(); 123 femmodel->ElementOperationx(&Element::CalvingRateDev); 124 break; 125 default: 126 _error_("Caving law "<<EnumToStringx(calvinglaw)<<" not supported yet"); 127 } 128 } 104 if(iscalving) Calvingx(femmodel); 129 105 if(VerboseSolution()) _printf0_(" computing levelset transport\n"); 130 106 /* smoothen slope of lsf for computation of normal on ice domain*/ 131 107 levelsetfunctionslope_core(femmodel); -
../trunk-jpl/src/c
-
../trunk-jpl/src/wrappers/python/Makefile.am
Property changes on: ../trunk-jpl/src/c ___________________________________________________________________ Modified: svn:ignore ## -15,6 +15,6 ## g++results probe.results stXXXX* -.deps -.dirstamp +*.deps +*.dirstamp .libs
1 1 AM_CPPFLAGS = @DAKOTAINCL@ @PETSCINCL@ @MPIINCL@ @SPOOLESINCL@ @METISINCL@ @TRIANGLEINCL@ @CHACOINCL@ @SCOTCHINCL@ @SHAPELIBINCL@ @PYTHONINCL@ @PYTHON_NUMPYINCL@ @AMPIINCL@ 2 #AUTOMAKE_OPTIONS = subdir-objects2 AUTOMAKE_OPTIONS = subdir-objects 3 3 4 4 EXEEXT=$(PYTHONWRAPPEREXT) 5 5 … … 9 9 #python io{{{ 10 10 lib_LTLIBRARIES = libISSMPython.la 11 11 12 io_sources= ./include/pythonincludes.h\ 13 ./io/pythonio.h\ 14 ./io/WritePythonData.cpp\ 12 io_sources= ./io/WritePythonData.cpp\ 15 13 ./io/CheckNumPythonArguments.cpp\ 16 14 ./io/FetchPythonData.cpp 17 15 … … 91 89 AM_CXXFLAGS += $(CXXOPTFLAGS) 92 90 #}}} 93 91 #Bin sources {{{ 94 BamgConvertMesh_la_SOURCES = ../BamgConvertMesh/BamgConvertMesh.cpp\ 95 ../BamgConvertMesh/BamgConvertMesh.h 92 BamgConvertMesh_la_SOURCES = ../BamgConvertMesh/BamgConvertMesh.cpp 96 93 BamgConvertMesh_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 97 94 98 BamgMesher_la_SOURCES = ../BamgMesher/BamgMesher.cpp\ 99 ../BamgMesher/BamgMesher.h 95 BamgMesher_la_SOURCES = ../BamgMesher/BamgMesher.cpp 100 96 BamgMesher_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 101 97 102 ContourToMesh_la_SOURCES = ../ContourToMesh/ContourToMesh.cpp\ 103 ../ContourToMesh/ContourToMesh.h 98 ContourToMesh_la_SOURCES = ../ContourToMesh/ContourToMesh.cpp 104 99 ContourToMesh_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 105 100 106 ContourToNodes_la_SOURCES = ../ContourToNodes/ContourToNodes.cpp\ 107 ../ContourToNodes/ContourToNodes.h 101 ContourToNodes_la_SOURCES = ../ContourToNodes/ContourToNodes.cpp 108 102 ContourToNodes_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 109 103 110 ElementConnectivity_la_SOURCES = ../ElementConnectivity/ElementConnectivity.cpp\ 111 ../ElementConnectivity/ElementConnectivity.h 104 ElementConnectivity_la_SOURCES = ../ElementConnectivity/ElementConnectivity.cpp 112 105 ElementConnectivity_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 113 106 114 EnumToString_la_SOURCES = ../EnumToString/EnumToString.cpp\ 115 ../EnumToString/EnumToString.h 107 EnumToString_la_SOURCES = ../EnumToString/EnumToString.cpp 116 108 EnumToString_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 117 109 118 InterpFromMeshToMesh2d_la_SOURCES = ../InterpFromMeshToMesh2d/InterpFromMeshToMesh2d.cpp\ 119 ../InterpFromMeshToMesh2d/InterpFromMeshToMesh2d.h 110 InterpFromMeshToMesh2d_la_SOURCES = ../InterpFromMeshToMesh2d/InterpFromMeshToMesh2d.cpp 120 111 InterpFromMeshToMesh2d_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(MULTITHREADINGLIB) $(GSLLIB) $(PROJ4LIB) 121 112 122 InterpFromMeshToMesh3d_la_SOURCES = ../InterpFromMeshToMesh3d/InterpFromMeshToMesh3d.cpp\ 123 ../InterpFromMeshToMesh3d/InterpFromMeshToMesh3d.h 113 InterpFromMeshToMesh3d_la_SOURCES = ../InterpFromMeshToMesh3d/InterpFromMeshToMesh3d.cpp 124 114 InterpFromMeshToMesh3d_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(MULTITHREADINGLIB) $(GSLLIB) $(PROJ4LIB) 125 115 126 InterpFromGridToMesh_la_SOURCES = ../InterpFromGridToMesh/InterpFromGridToMesh.cpp\ 127 ../InterpFromGridToMesh/InterpFromGridToMesh.h 116 InterpFromGridToMesh_la_SOURCES = ../InterpFromGridToMesh/InterpFromGridToMesh.cpp 128 117 InterpFromGridToMesh_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(MULTITHREADINGLIB) $(GSLLIB) $(PROJ4LIB) 129 118 130 InterpFromMeshToGrid_la_SOURCES = ../InterpFromMeshToGrid/InterpFromMeshToGrid.cpp\ 131 ../InterpFromMeshToGrid/InterpFromMeshToGrid.h 119 InterpFromMeshToGrid_la_SOURCES = ../InterpFromMeshToGrid/InterpFromMeshToGrid.cpp 132 120 InterpFromMeshToGrid_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(MULTITHREADINGLIB) $(GSLLIB) $(PROJ4LIB) 133 121 134 IssmConfig_la_SOURCES = ../IssmConfig/IssmConfig.cpp\ 135 ../IssmConfig/IssmConfig.h 122 IssmConfig_la_SOURCES = ../IssmConfig/IssmConfig.cpp 136 123 IssmConfig_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) 137 124 138 MeshProfileIntersection_la_SOURCES = ../MeshProfileIntersection/MeshProfileIntersection.cpp\ 139 ../MeshProfileIntersection/MeshProfileIntersection.h 125 MeshProfileIntersection_la_SOURCES = ../MeshProfileIntersection/MeshProfileIntersection.cpp 140 126 MeshProfileIntersection_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 141 127 142 NodeConnectivity_la_SOURCES = ../NodeConnectivity/NodeConnectivity.cpp\ 143 ../NodeConnectivity/NodeConnectivity.h 128 NodeConnectivity_la_SOURCES = ../NodeConnectivity/NodeConnectivity.cpp 144 129 NodeConnectivity_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 145 130 146 StringToEnum_la_SOURCES = ../StringToEnum/StringToEnum.cpp\ 147 ../StringToEnum/StringToEnum.h 131 StringToEnum_la_SOURCES = ../StringToEnum/StringToEnum.cpp 148 132 StringToEnum_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 149 133 150 TriMesh_la_SOURCES = ../TriMesh/TriMesh.cpp\ 151 ../TriMesh/TriMesh.h 134 TriMesh_la_SOURCES = ../TriMesh/TriMesh.cpp 152 135 TriMesh_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(TRIANGLELIB) $(GSLLIB) $(PROJ4LIB) 153 136 154 TriMeshProcessRifts_la_SOURCES = ../TriMeshProcessRifts/TriMeshProcessRifts.cpp\ 155 ../TriMeshProcessRifts/TriMeshProcessRifts.h 137 TriMeshProcessRifts_la_SOURCES = ../TriMeshProcessRifts/TriMeshProcessRifts.cpp 156 138 TriMeshProcessRifts_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 157 139 #}}} -
../trunk-jpl/src/wrappers/M1qn3
-
../trunk-jpl/src/wrappers/matlab/Makefile.am
Property changes on: ../trunk-jpl/src/wrappers/M1qn3 ___________________________________________________________________ Modified: svn:ignore ## -1 +1,2 ## .deps +.dirstamp
9 9 #matlab io{{{ 10 10 lib_LTLIBRARIES = libISSMMatlab.la 11 11 12 io_sources= ./include/matlabincludes.h\ 13 ./io/matlabio.h\ 14 ./io/CheckNumMatlabArguments.cpp\ 12 io_sources= ./io/CheckNumMatlabArguments.cpp\ 15 13 ./io/WriteMatlabData.cpp\ 16 14 ./io/FetchMatlabData.cpp 17 15 … … 122 120 libISSMApi_la_LDFLAGS = -static 123 121 endif 124 122 125 BamgMesher_la_SOURCES = ../BamgMesher/BamgMesher.cpp\ 126 ../BamgMesher/BamgMesher.h 123 BamgMesher_la_SOURCES = ../BamgMesher/BamgMesher.cpp 127 124 BamgMesher_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 128 125 129 BamgConvertMesh_la_SOURCES = ../BamgConvertMesh/BamgConvertMesh.cpp\ 130 ../BamgConvertMesh/BamgConvertMesh.h 126 BamgConvertMesh_la_SOURCES = ../BamgConvertMesh/BamgConvertMesh.cpp 131 127 BamgConvertMesh_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 132 128 133 BamgTriangulate_la_SOURCES = ../BamgTriangulate/BamgTriangulate.cpp\ 134 ../BamgTriangulate/BamgTriangulate.h 129 BamgTriangulate_la_SOURCES = ../BamgTriangulate/BamgTriangulate.cpp 135 130 BamgTriangulate_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 136 131 137 Chaco_la_SOURCES = ../Chaco/Chaco.cpp\ 138 ../Chaco/Chaco.h 132 Chaco_la_SOURCES = ../Chaco/Chaco.cpp 139 133 Chaco_la_LIBADD = ${deps} $(MPILIB) $(CHACOLIB) $(GSLLIB) $(PROJ4LIB) $(PETSCLIB) 140 134 141 ContourToMesh_la_SOURCES = ../ContourToMesh/ContourToMesh.cpp\ 142 ../ContourToMesh/ContourToMesh.h 135 ContourToMesh_la_SOURCES = ../ContourToMesh/ContourToMesh.cpp 143 136 ContourToMesh_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(MULTITHREADINGLIB) $(GSLLIB) $(PROJ4LIB) 144 137 145 ExpToLevelSet_la_SOURCES = ../ExpToLevelSet/ExpToLevelSet.cpp\ 146 ../ExpToLevelSet/ExpToLevelSet.h 138 ExpToLevelSet_la_SOURCES = ../ExpToLevelSet/ExpToLevelSet.cpp 147 139 ExpToLevelSet_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(MULTITHREADINGLIB) $(GSLLIB) $(PROJ4LIB) 148 140 149 141 150 ContourToNodes_la_SOURCES = ../ContourToNodes/ContourToNodes.cpp\ 151 ../ContourToNodes/ContourToNodes.h 142 ContourToNodes_la_SOURCES = ../ContourToNodes/ContourToNodes.cpp 152 143 ContourToNodes_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 153 144 154 ElementConnectivity_la_SOURCES = ../ElementConnectivity/ElementConnectivity.cpp\ 155 ../ElementConnectivity/ElementConnectivity.h 145 ElementConnectivity_la_SOURCES = ../ElementConnectivity/ElementConnectivity.cpp 156 146 ElementConnectivity_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 157 147 158 EnumToString_la_SOURCES = ../EnumToString/EnumToString.cpp\ 159 ../EnumToString/EnumToString.h 148 EnumToString_la_SOURCES = ../EnumToString/EnumToString.cpp 160 149 EnumToString_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 161 150 162 StringToEnum_la_SOURCES = ../StringToEnum/StringToEnum.cpp\ 163 ../StringToEnum/StringToEnum.h 151 StringToEnum_la_SOURCES = ../StringToEnum/StringToEnum.cpp 164 152 StringToEnum_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 165 153 166 InterpFromGridToMesh_la_SOURCES = ../InterpFromGridToMesh/InterpFromGridToMesh.cpp\ 167 ../InterpFromGridToMesh/InterpFromGridToMesh.h 154 InterpFromGridToMesh_la_SOURCES = ../InterpFromGridToMesh/InterpFromGridToMesh.cpp 168 155 InterpFromGridToMesh_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(MULTITHREADINGLIB) $(GSLLIB) $(PROJ4LIB) 169 156 170 InterpFromMeshToMesh2d_la_SOURCES = ../InterpFromMeshToMesh2d/InterpFromMeshToMesh2d.cpp\ 171 ../InterpFromMeshToMesh2d/InterpFromMeshToMesh2d.h 157 InterpFromMeshToMesh2d_la_SOURCES = ../InterpFromMeshToMesh2d/InterpFromMeshToMesh2d.cpp 172 158 InterpFromMeshToMesh2d_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(MULTITHREADINGLIB) $(GSLLIB) $(PROJ4LIB) 173 159 174 InterpFromMeshToMesh3d_la_SOURCES = ../InterpFromMeshToMesh3d/InterpFromMeshToMesh3d.cpp\ 175 ../InterpFromMeshToMesh3d/InterpFromMeshToMesh3d.h 160 InterpFromMeshToMesh3d_la_SOURCES = ../InterpFromMeshToMesh3d/InterpFromMeshToMesh3d.cpp 176 161 InterpFromMeshToMesh3d_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 177 162 178 InterpFromMeshToGrid_la_SOURCES = ../InterpFromMeshToGrid/InterpFromMeshToGrid.cpp\ 179 ../InterpFromMeshToGrid/InterpFromMeshToGrid.h 163 InterpFromMeshToGrid_la_SOURCES = ../InterpFromMeshToGrid/InterpFromMeshToGrid.cpp 180 164 InterpFromMeshToGrid_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 181 165 182 InterpFromMesh2d_la_SOURCES = ../InterpFromMesh2d/InterpFromMesh2d.cpp\ 183 ../InterpFromMesh2d/InterpFromMesh2d.h 166 InterpFromMesh2d_la_SOURCES = ../InterpFromMesh2d/InterpFromMesh2d.cpp 184 167 InterpFromMesh2d_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(MULTITHREADINGLIB) $(GSLLIB) $(PROJ4LIB) 185 168 186 IssmConfig_la_SOURCES = ../IssmConfig/IssmConfig.cpp\ 187 ../IssmConfig/IssmConfig.h 169 IssmConfig_la_SOURCES = ../IssmConfig/IssmConfig.cpp 188 170 IssmConfig_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) 189 171 190 KMLFileRead_la_SOURCES = ../KMLFileRead/KMLFileRead.cpp\ 191 ../KMLFileRead/KMLFileRead.h 172 KMLFileRead_la_SOURCES = ../KMLFileRead/KMLFileRead.cpp 192 173 KMLFileRead_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 193 174 194 KMLMeshWrite_la_SOURCES = ../KMLMeshWrite/KMLMeshWrite.cpp\ 195 ../KMLMeshWrite/KMLMeshWrite.h 175 KMLMeshWrite_la_SOURCES = ../KMLMeshWrite/KMLMeshWrite.cpp 196 176 KMLMeshWrite_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 197 177 198 KMLOverlay_la_SOURCES = ../KMLOverlay/KMLOverlay.cpp\ 199 ../KMLOverlay/KMLOverlay.h 178 KMLOverlay_la_SOURCES = ../KMLOverlay/KMLOverlay.cpp 200 179 KMLOverlay_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 201 180 202 Xy2ll_la_SOURCES = ../Xy2ll/Xy2ll.cpp\ 203 ../Xy2ll/Xy2ll.h 181 Xy2ll_la_SOURCES = ../Xy2ll/Xy2ll.cpp 204 182 Xy2ll_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 205 183 206 Ll2xy_la_SOURCES = ../Ll2xy/Ll2xy.cpp\ 207 ../Ll2xy/Ll2xy.h 184 Ll2xy_la_SOURCES = ../Ll2xy/Ll2xy.cpp 208 185 Ll2xy_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 209 186 210 ExpSimplify_la_SOURCES = ../ExpSimplify/ExpSimplify.cpp\ 211 ../ExpSimplify/ExpSimplify.h 187 ExpSimplify_la_SOURCES = ../ExpSimplify/ExpSimplify.cpp 212 188 ExpSimplify_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 213 189 214 Exp2Kml_la_SOURCES = ../Exp2Kml/Exp2Kml.cpp\ 215 ../Exp2Kml/Exp2Kml.h 190 Exp2Kml_la_SOURCES = ../Exp2Kml/Exp2Kml.cpp 216 191 Exp2Kml_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 217 192 218 Kml2Exp_la_SOURCES = ../Kml2Exp/Kml2Exp.cpp\ 219 ../Kml2Exp/Kml2Exp.h 193 Kml2Exp_la_SOURCES = ../Kml2Exp/Kml2Exp.cpp 220 194 Kml2Exp_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 221 195 222 Kriging_la_SOURCES = ../Kriging/Kriging.cpp\ 223 ../Kriging/Kriging.h 196 Kriging_la_SOURCES = ../Kriging/Kriging.cpp 224 197 Kriging_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) $(MULTITHREADINGLIB) $(GSLLIB) $(PROJ4LIB) 225 198 226 MeshPartition_la_SOURCES = ../MeshPartition/MeshPartition.cpp\ 227 ../MeshPartition/MeshPartition.h 199 MeshPartition_la_SOURCES = ../MeshPartition/MeshPartition.cpp 228 200 MeshPartition_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(METISLIB) $(GSLLIB) $(PROJ4LIB) 229 201 230 M1qn3_la_SOURCES = ../M1qn3/M1qn3.cpp\ 231 ../M1qn3/M1qn3.h 202 M1qn3_la_SOURCES = ../M1qn3/M1qn3.cpp 232 203 M1qn3_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(METISLIB) $(M1QN3LIB) $(GSLLIB) $(PROJ4LIB) 233 204 234 MeshProfileIntersection_la_SOURCES = ../MeshProfileIntersection/MeshProfileIntersection.cpp\ 235 ../MeshProfileIntersection/MeshProfileIntersection.h 205 MeshProfileIntersection_la_SOURCES = ../MeshProfileIntersection/MeshProfileIntersection.cpp 236 206 MeshProfileIntersection_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 237 207 238 NodeConnectivity_la_SOURCES = ../NodeConnectivity/NodeConnectivity.cpp\ 239 ../NodeConnectivity/NodeConnectivity.h 208 NodeConnectivity_la_SOURCES = ../NodeConnectivity/NodeConnectivity.cpp 240 209 NodeConnectivity_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 241 210 242 PointCloudFindNeighbors_la_SOURCES = ../PointCloudFindNeighbors/PointCloudFindNeighbors.cpp\ 243 ../PointCloudFindNeighbors/PointCloudFindNeighbors.h 211 PointCloudFindNeighbors_la_SOURCES = ../PointCloudFindNeighbors/PointCloudFindNeighbors.cpp 244 212 PointCloudFindNeighbors_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(MULTITHREADINGLIB) $(GSLLIB) $(PROJ4LIB) 245 213 246 PropagateFlagsFromConnectivity_la_SOURCES = ../PropagateFlagsFromConnectivity/PropagateFlagsFromConnectivity.cpp\ 247 ../PropagateFlagsFromConnectivity/PropagateFlagsFromConnectivity.h 214 PropagateFlagsFromConnectivity_la_SOURCES = ../PropagateFlagsFromConnectivity/PropagateFlagsFromConnectivity.cpp 248 215 PropagateFlagsFromConnectivity_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 249 216 250 Scotch_la_SOURCES = ../Scotch/Scotch.cpp\ 251 ../Scotch/Scotch.h 217 Scotch_la_SOURCES = ../Scotch/Scotch.cpp 252 218 Scotch_la_LIBADD = ${deps} $(SCOTCHLIB) $(MPILIB) $(BLASLAPACKLIB) 253 219 254 ShpRead_la_SOURCES = ../ShpRead/ShpRead.cpp\ 255 ../ShpRead/ShpRead.h 220 ShpRead_la_SOURCES = ../ShpRead/ShpRead.cpp 256 221 ShpRead_la_LIBADD = ${deps} $(SHAPELIBLIB) $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 257 222 258 Shp2Kml_la_SOURCES = ../Shp2Kml/Shp2Kml.cpp\ 259 ../Shp2Kml/Shp2Kml.h 223 Shp2Kml_la_SOURCES = ../Shp2Kml/Shp2Kml.cpp 260 224 Shp2Kml_la_LIBADD = ${deps} $(SHAPELIBLIB) $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 261 225 262 TriaSearch_la_SOURCES = ../TriaSearch/TriaSearch.cpp\ 263 ../TriaSearch/TriaSearch.h 226 TriaSearch_la_SOURCES = ../TriaSearch/TriaSearch.cpp 264 227 TriaSearch_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 265 228 266 TriMesh_la_SOURCES = ../TriMesh/TriMesh.cpp\ 267 ../TriMesh/TriMesh.h 229 TriMesh_la_SOURCES = ../TriMesh/TriMesh.cpp 268 230 TriMesh_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(TRIANGLELIB) $(GSLLIB) $(PROJ4LIB) 269 231 270 TriMeshProcessRifts_la_SOURCES = ../TriMeshProcessRifts/TriMeshProcessRifts.cpp\ 271 ../TriMeshProcessRifts/TriMeshProcessRifts.h 232 TriMeshProcessRifts_la_SOURCES = ../TriMeshProcessRifts/TriMeshProcessRifts.cpp 272 233 TriMeshProcessRifts_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 273 234 #}}} -
../trunk-jpl/src/wrappers/ExpToLevelSet
-
../trunk-jpl/src/wrappers
Property changes on: ../trunk-jpl/src/wrappers/ExpToLevelSet ___________________________________________________________________ Modified: svn:ignore ## -1 +1,2 ## .deps +.dirstamp
Note:
See TracBrowser
for help on using the repository browser.