Changeset 4119


Ignore:
Timestamp:
06/22/10 13:55:52 (15 years ago)
Author:
seroussi
Message:

argument nummodels missing in NewFemModel

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);
     1function femmodel=NewFemModel(md,solution_type,analysis_types,nummodels);
    22%NEWFEMMODEL - create a finite element model out of the matlab base \@model md.
    33%   For each analysis_type contained in analysis_types, create a set of nodes, constraints
     
    66%
    77%   Usage:
    8 %      femmodel=NewFemModel(md,solution_type,analysis_types)
     8%      femmodel=NewFemModel(md,solution_type,analysis_types,nummodels)
    99%
    1010
     
    2323           
    2424           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));
    2626
    2727           displaystring(md.verbose,'%s','      generating degrees of freedofemmodel...');
  • TabularUnified issm/trunk/src/m/solutions/jpl/balancedthickness.m

    r4102 r4119  
    1212
    1313        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);
    1515
    1616        %retrieve parameters
  • TabularUnified issm/trunk/src/m/solutions/jpl/balancedthickness2.m

    r4102 r4119  
    99
    1010        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);
    1212
    1313        %retrieve parameters
  • TabularUnified issm/trunk/src/m/solutions/jpl/balancedvelocities.m

    r4102 r4119  
    1212
    1313        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);
    1515
    1616        %retrieve parameters
  • TabularUnified issm/trunk/src/m/solutions/jpl/bedslope.m

    r4113 r4119  
    1212
    1313        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);
    1515
    1616        %retrieve parameters
  • TabularUnified issm/trunk/src/m/solutions/jpl/diagnostic.m

    r4113 r4119  
    1212
    1313        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);
    1515
    1616        %retrieve parameters
  • TabularUnified issm/trunk/src/m/solutions/jpl/prognostic.m

    r4102 r4119  
    1313       
    1414        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);
    1616
    1717        % figure out number of dof: just for information purposes.
  • TabularUnified issm/trunk/src/m/solutions/jpl/prognostic2.m

    r4102 r4119  
    1212
    1313        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);
    1515
    1616        %retrieve parameters
  • TabularUnified issm/trunk/src/m/solutions/jpl/steadystate.m

    r4102 r4119  
    1313
    1414        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);
    1616
    1717        %retrieve parameters
  • TabularUnified issm/trunk/src/m/solutions/jpl/surfaceslope.m

    r4113 r4119  
    1212
    1313        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);
    1515
    1616        %retrieve parameters
  • TabularUnified issm/trunk/src/m/solutions/jpl/thermal.m

    r4102 r4119  
    1212
    1313        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);
    1515
    1616        %retrieve parameters
Note: See TracChangeset for help on using the changeset viewer.