Changeset 7444


Ignore:
Timestamp:
02/14/11 17:01:14 (14 years ago)
Author:
Eric.Larour
Message:

Added gridonwater. + DeepEcho for NodeSets

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

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/IoModel.cpp

    r7408 r7444  
    7676        xfree((void**)&this->gridonicesheet);
    7777        xfree((void**)&this->gridoniceshelf);
     78        xfree((void**)&this->gridonwater);
    7879        xfree((void**)&this->pressureload);
    7980        xfree((void**)&this->spcvelocity);
     
    292293        this->gridonicesheet=NULL;
    293294        this->gridoniceshelf=NULL;
     295        this->gridonwater=NULL;
    294296
    295297        this->drag_type=0;
  • issm/trunk/src/c/objects/IoModel.h

    r7408 r7444  
    8989                double* gridonicesheet;
    9090                double* gridoniceshelf;
     91                double* gridonwater;
    9192
    9293                /*friction: */
  • issm/trunk/src/c/objects/NodeSets.cpp

    r5057 r7444  
    3030/*FUNCTION NodeSets::Echo{{{1*/
    3131void NodeSets::Echo(void){
     32       
     33        int i;
     34
     35        printf("\nNodeSets echo:\n");
     36        printf(" gsize: %i\n",gsize);
     37        printf(" fsize: %i\n",fsize);
     38        printf(" ssize: %i\n",ssize);
     39        printf(" pv_f: %p\n",pv_f);
     40        printf(" pv_s: %p\n",pv_s);
     41
     42}/*}}}*/
     43/*FUNCTION NodeSets::DeepEcho{{{1*/
     44void NodeSets::DeepEcho(void){
    3245       
    3346        int i;
  • issm/trunk/src/c/objects/NodeSets.h

    r5057 r7444  
    2626
    2727        void Echo();
     28        void DeepEcho(void);
    2829        int GetGSize();
    2930        int GetFSize();
Note: See TracChangeset for help on using the changeset viewer.