Changeset 15897


Ignore:
Timestamp:
08/23/13 09:00:02 (12 years ago)
Author:
Mathieu Morlighem
Message:

CHG: fixed compilation

Location:
issm/trunk-jpl/src/c
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Elements/Penta.cpp

    r15896 r15897  
    52815281        for(int iv=0;iv<3;iv++){
    52825282                gauss->GaussVertex(iv);
    5283                 gaussup->GaussNode(iv+3);
     5283                gaussup->GaussVertex(iv+3);
    52845284
    52855285        // TODO: make sure that no node is computed twice (insert mask)
     
    53505350    /*Intermediaries*/
    53515351    bool isenthalpy;
    5352     IssmDouble waterfraction_array[NUMVERTICES], temperature[NUMVERTICES];
     5352    IssmDouble waterfraction[NUMVERTICES], temperature[NUMVERTICES];
    53535353    IssmDouble enthalpy[NUMVERTICES], pressure[NUMVERTICES];
    53545354    IssmDouble latentheat, dt;
     
    53715371        enthalpy_input->GetInputValue(&enthalpy[iv], gauss);
    53725372        pressure_input->GetInputValue(&pressure[iv], gauss);
    5373         matpar->EnthalpyToThermal(&temperature[iv], &waterfraction[iv], enthalpy[iv],pressure[iv]);
     5373        matpar->EnthalpyToThermal(&temperature[iv],&waterfraction[iv], enthalpy[iv],pressure[iv]);
    53745374   
    53755375        /*drain water fraction*/
  • issm/trunk-jpl/src/c/classes/Elements/Penta.h

    r15892 r15897  
    359359                void           UpdateThermalBasalConstraints(void);
    360360                void           ComputeBasalMeltrate(void);
    361         void           DrainWaterfraction(void);
     361                void           DrainWaterfraction(void);
    362362                #endif
    363363
  • issm/trunk-jpl/src/c/shared/Elements/elements.h

    r15889 r15897  
    1919                                     IssmDouble* PrecipitationsPresentday,
    2020                                     IssmDouble* TemperaturesLgm, IssmDouble* TemperaturesPresentday,
    21                                              IssmDouble* monthlytemperaturesout, IssmDouble* monthlyprecout);
     21                                          IssmDouble* monthlytemperaturesout, IssmDouble* monthlyprecout);
    2222IssmDouble DrainageFunctionWaterfraction(IssmDouble waterfraction);
    2323
Note: See TracChangeset for help on using the changeset viewer.