Changeset 4119
- Timestamp:
- 06/22/10 13:55:52 (15 years ago)
- Location:
- issm/trunk/src/m/solutions/jpl
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk/src/m/solutions/jpl/NewFemModel.m ¶
r4114 r4119 1 function femmodel=NewFemModel(md,solution_type,analysis_types );1 function femmodel=NewFemModel(md,solution_type,analysis_types,nummodels); 2 2 %NEWFEMMODEL - create a finite element model out of the matlab base \@model md. 3 3 % For each analysis_type contained in analysis_types, create a set of nodes, constraints … … 6 6 % 7 7 % Usage: 8 % femmodel=NewFemModel(md,solution_type,analysis_types )8 % femmodel=NewFemModel(md,solution_type,analysis_types,nummodels) 9 9 % 10 10 … … 23 23 24 24 analysis_type=femmodel.analysis_type_list(i); 25 displaystring(md.verbose,'%s%s',' dealing with analysis type: ',EnumAsString(analysis_type) ;25 displaystring(md.verbose,'%s%s',' dealing with analysis type: ',EnumAsString(analysis_type)); 26 26 27 27 displaystring(md.verbose,'%s',' generating degrees of freedofemmodel...'); -
TabularUnified issm/trunk/src/m/solutions/jpl/balancedthickness.m ¶
r4102 r4119 12 12 13 13 displaystring(md.verbose,'%s',['create finite element model']); 14 femmodel=NewFemModel(md,solution_type,analysis_types );14 femmodel=NewFemModel(md,solution_type,analysis_types,1); 15 15 16 16 %retrieve parameters -
TabularUnified issm/trunk/src/m/solutions/jpl/balancedthickness2.m ¶
r4102 r4119 9 9 10 10 displaystring(md.verbose,'%s',['create finite element model']); 11 femmodel=NewFemModel(md,solution_type,analysis_types );11 femmodel=NewFemModel(md,solution_type,analysis_types,1); 12 12 13 13 %retrieve parameters -
TabularUnified issm/trunk/src/m/solutions/jpl/balancedvelocities.m ¶
r4102 r4119 12 12 13 13 displaystring(md.verbose,'%s',['create finite element model']); 14 femmodel=NewFemModel(md,solution_type,analysis_types );14 femmodel=NewFemModel(md,solution_type,analysis_types,1); 15 15 16 16 %retrieve parameters -
TabularUnified issm/trunk/src/m/solutions/jpl/bedslope.m ¶
r4113 r4119 12 12 13 13 displaystring(md.verbose,'%s',['create finite element model']); 14 femmodel=NewFemModel(md,solution_type,analysis_types );14 femmodel=NewFemModel(md,solution_type,analysis_types,1); 15 15 16 16 %retrieve parameters -
TabularUnified issm/trunk/src/m/solutions/jpl/diagnostic.m ¶
r4113 r4119 12 12 13 13 displaystring(md.verbose,'%s',['create finite element model']); 14 femmodel=NewFemModel(md,solution_type,analysis_types );14 femmodel=NewFemModel(md,solution_type,analysis_types,5); 15 15 16 16 %retrieve parameters -
TabularUnified issm/trunk/src/m/solutions/jpl/prognostic.m ¶
r4102 r4119 13 13 14 14 displaystring(md.verbose,'%s',['reading prognostic model data']); 15 femmodel=NewFemModel(md,solution_type,analysis_types );15 femmodel=NewFemModel(md,solution_type,analysis_types,1); 16 16 17 17 % figure out number of dof: just for information purposes. -
TabularUnified issm/trunk/src/m/solutions/jpl/prognostic2.m ¶
r4102 r4119 12 12 13 13 displaystring(md.verbose,'%s',['create finite element model']); 14 femmodel=NewFemModel(md,solution_type,analysis_types );14 femmodel=NewFemModel(md,solution_type,analysis_types,1); 15 15 16 16 %retrieve parameters -
TabularUnified issm/trunk/src/m/solutions/jpl/steadystate.m ¶
r4102 r4119 13 13 14 14 displaystring(md.verbose,'%s',['create finite element model']); 15 femmodel=NewFemModel(md,solution_type,analysis_types );15 femmodel=NewFemModel(md,solution_type,analysis_types,7); 16 16 17 17 %retrieve parameters -
TabularUnified issm/trunk/src/m/solutions/jpl/surfaceslope.m ¶
r4113 r4119 12 12 13 13 displaystring(md.verbose,'%s',['create finite element model']); 14 femmodel=NewFemModel(md,solution_type,analysis_types );14 femmodel=NewFemModel(md,solution_type,analysis_types,1); 15 15 16 16 %retrieve parameters -
TabularUnified issm/trunk/src/m/solutions/jpl/thermal.m ¶
r4102 r4119 12 12 13 13 displaystring(md.verbose,'%s',['reading thermal model data']); 14 femmodel=NewFemModel(md,solution_type,analysis_types );14 femmodel=NewFemModel(md,solution_type,analysis_types,2); 15 15 16 16 %retrieve parameters
Note:
See TracChangeset
for help on using the changeset viewer.