Changeset 6412 for issm/trunk/src/c/objects/Loads/Friction.cpp
- Timestamp:
- 10/25/10 08:57:04 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Loads/Friction.cpp
r5749 r6412 108 108 vmag=sqrt(pow(vx,2)+pow(vy,2)+pow(vz,2)); 109 109 } 110 else ISSMERROR("element_type %s not supported yet",element_type);110 else _error_("element_type %s not supported yet",element_type); 111 111 112 112 alpha2=pow(drag_coefficient,2)*pow(Neff,r)*pow(vmag,(s-1)); … … 169 169 vmag=sqrt(pow(vx,2)+pow(vy,2)+pow(vz,2)); 170 170 } 171 else ISSMERROR("element_type %s not supported yet",element_type);171 else _error_("element_type %s not supported yet",element_type); 172 172 173 173 alpha2=pow(drag_coefficient,2)*pow(Neff,r)*pow(vmag,(s-1)); … … 239 239 240 240 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)); 242 242 input->GetParameterValue(pvalue,gauss); 243 243 … … 248 248 249 249 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)); 251 251 input->GetParameterValue(pvalue,gauss); 252 252
Note:
See TracChangeset
for help on using the changeset viewer.