Ignore:
Timestamp:
10/25/10 08:57:04 (15 years ago)
Author:
Mathieu Morlighem
Message:

moved ISSMERROR to _error_, ISSMASSERT to _assert_ and ISSMPRINTF to _printf_

File:
1 edited

Legend:

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

    r5749 r6412  
    108108                vmag=sqrt(pow(vx,2)+pow(vy,2)+pow(vz,2));
    109109        }
    110         else ISSMERROR("element_type %s not supported yet",element_type);
     110        else _error_("element_type %s not supported yet",element_type);
    111111
    112112        alpha2=pow(drag_coefficient,2)*pow(Neff,r)*pow(vmag,(s-1));
     
    169169                vmag=sqrt(pow(vx,2)+pow(vy,2)+pow(vz,2));
    170170        }
    171         else ISSMERROR("element_type %s not supported yet",element_type);
     171        else _error_("element_type %s not supported yet",element_type);
    172172
    173173        alpha2=pow(drag_coefficient,2)*pow(Neff,r)*pow(vmag,(s-1));
     
    239239
    240240        Input* input=inputs->GetInput(enum_type);
    241         if(!input) ISSMERROR("input %s not found",EnumToString(enum_type));
     241        if(!input) _error_("input %s not found",EnumToString(enum_type));
    242242        input->GetParameterValue(pvalue,gauss);
    243243
     
    248248
    249249        Input* input=inputs->GetInput(enum_type);
    250         if(!input) ISSMERROR("input %s not found",EnumToString(enum_type));
     250        if(!input) _error_("input %s not found",EnumToString(enum_type));
    251251        input->GetParameterValue(pvalue,gauss);
    252252
Note: See TracChangeset for help on using the changeset viewer.