Changeset 11508


Ignore:
Timestamp:
02/23/12 11:07:12 (13 years ago)
Author:
Mathieu Morlighem
Message:

added PositiveDegreeDay module

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

Legend:

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

    r11463 r11508  
    312312                                        ./modules/SpcNodesx/SpcNodesx.h\
    313313                                        ./modules/SpcNodesx/SpcNodesx.cpp\
     314                                        ./modules/PositiveDegreeDayx/PositiveDegreeDayx.h\
     315                                        ./modules/PositiveDegreeDayx/PositiveDegreeDayx.cpp\
    314316                                        ./modules/UpdateConstraintsx/UpdateConstraintsx.h\
    315317                                        ./modules/UpdateConstraintsx/UpdateConstraintsx.cpp\
  • issm/trunk-jpl/src/c/objects/Elements/Element.h

    r11322 r11508  
    6868                virtual void   MigrateGroundingLine(double* old_floating_ice,double* sheet_ungrounding)=0;
    6969                virtual void   PotentialSheetUngrounding(Vec potential_sheet_ungrounding)=0;
     70                virtual void   PositiveDegreeDay(void)=0;
    7071                virtual int    UpdatePotentialSheetUngrounding(double* potential_sheet_ungrounding,Vec vec_nodes_on_iceshelf,double* nodes_on_iceshelf)=0;
    7172                virtual void   ResetCoordinateSystem()=0;
  • issm/trunk-jpl/src/c/objects/Elements/Penta.cpp

    r11448 r11508  
    23762376        *pnumvertices=NUMVERTICES;
    23772377        *pnumnodes=numnodes;
     2378}
     2379/*}}}*/
     2380/*FUNCTION Penta::PositiveDegreeDay{{{1*/
     2381void  Penta::PositiveDegreeDay(){
     2382
     2383        _error_("Not implemented yet");
    23782384}
    23792385/*}}}*/
  • issm/trunk-jpl/src/c/objects/Elements/Penta.h

    r11448 r11508  
    112112                void   PatchFill(int* pcount, Patch* patch);
    113113                void   PatchSize(int* pnumrows, int* pnumvertices,int* pnumnodes);
     114                void   PositiveDegreeDay(void);
    114115                void   ProcessResultsUnits(void);
    115116                void   ResetCoordinateSystem(void);
  • issm/trunk-jpl/src/c/objects/Elements/Tria.cpp

    r11448 r11508  
    22012201                }
    22022202        }
     2203}
     2204/*}}}*/
     2205/*FUNCTION Tria::PositiveDegreeDay{{{1*/
     2206void  Tria::PositiveDegreeDay(){
     2207
     2208        _error_("Not implemented yet");
    22032209}
    22042210/*}}}*/
  • issm/trunk-jpl/src/c/objects/Elements/Tria.h

    r11448 r11508  
    107107                void   MigrateGroundingLine(double* oldfloating,double* sheet_ungrounding);
    108108                void   PotentialSheetUngrounding(Vec potential_sheet_ungrounding);
     109                void   PositiveDegreeDay(void);
    109110                void   RequestedOutput(int output_enum,int step,double time);
    110111                void   ListResultsInfo(int** results_enums,int** results_size,double** results_times,int** results_steps,int* num_results);
Note: See TracChangeset for help on using the changeset viewer.