Changeset 1864


Ignore:
Timestamp:
08/25/09 10:06:03 (16 years ago)
Author:
Mathieu Morlighem
Message:

moved thermalstatic to steadystate

Location:
issm/trunk/src/c
Files:
4 edited

Legend:

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

    r1854 r1864  
    604604                                        ./parallel/transient_core_2d.cpp\
    605605                                        ./parallel/transient_core_3d.cpp\
    606                                         ./parallel/thermalstatic_core.cpp\
     606                                        ./parallel/steadystate_core.cpp\
    607607                                        ./parallel/OutputResults.cpp
    608608
     
    612612bin_PROGRAMS =
    613613else
    614 bin_PROGRAMS = diagnostic.exe  control.exe thermal.exe prognostic.exe transient.exe thermalstatic.exe
     614bin_PROGRAMS = diagnostic.exe  control.exe thermal.exe prognostic.exe transient.exe steadystate.exe
    615615endif
    616616
     
    620620diagnostic_exe_CXXFLAGS= -fPIC -D_PARALLEL_
    621621
    622 thermalstatic_exe_SOURCES = parallel/thermalstatic.cpp
    623 thermalstatic_exe_CXXFLAGS= -fPIC -D_PARALLEL_
     622steadystate_exe_SOURCES = parallel/steadystate.cpp
     623steadystate_exe_CXXFLAGS= -fPIC -D_PARALLEL_
    624624
    625625control_exe_SOURCES = parallel/control.cpp
  • issm/trunk/src/c/ModelProcessorx/CreateParameters.cpp

    r1854 r1864  
    6767        //control: thermal static
    6868        count++;
    69         param= new Param(count,"thermalstatic",INTEGER);
    70         param->SetInteger(iomodel->thermalstatic);
     69        param= new Param(count,"steadystate",INTEGER);
     70        param->SetInteger(iomodel->steadystate);
    7171        parameters->AddObject(param);
    7272
  • issm/trunk/src/c/ModelProcessorx/IoModel.cpp

    r1838 r1864  
    104104        /*!control methods: */
    105105        iomodel->control_type=NULL;
    106         iomodel->thermalstatic=0;
     106        iomodel->steadystate=0;
    107107
    108108        /*!solution parameters: */
     
    315315        /*Get control parameters: */
    316316        IoModelFetchData((void**)&iomodel->control_type,NULL,NULL,iomodel_handle,"control_type","String",NULL);
    317         IoModelFetchData((void**)&iomodel->thermalstatic,NULL,NULL,iomodel_handle,"thermalstatic","Integer",NULL);
     317        IoModelFetchData((void**)&iomodel->steadystate,NULL,NULL,iomodel_handle,"steadystate","Integer",NULL);
    318318
    319319        /*!Get solution parameters: */
  • issm/trunk/src/c/ModelProcessorx/IoModel.h

    r1838 r1864  
    103103        /*control methods: */
    104104        char*   control_type;
    105         int     thermalstatic;
     105        int     steadystate;
    106106
    107107        /*solution parameters: */
Note: See TracChangeset for help on using the changeset viewer.