Changeset 1729
- Timestamp:
- 08/17/09 13:51:42 (16 years ago)
- Location:
- issm/trunk/src
- Files:
-
- 7 added
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Riftfront.cpp
r1717 r1729 445 445 446 446 /*Ok, now compute the pressure (in norm) that is being applied to the flanks, depending on the type of fill: */ 447 if(fill==Water Enum()){447 if(fill==WaterFillEnum()){ 448 448 if(shelf){ 449 449 /*We are on an ice shelf, hydrostatic equilibrium is used to determine the pressure for water fill: */ … … 455 455 } 456 456 } 457 else if(fill==Air Enum()){457 else if(fill==AirFillEnum()){ 458 458 pressure=rho_ice*gravity*pow(thickness,(double)2)/(double)2; //icefront on an ice sheet, pressure imbalance ice vs air. 459 459 } 460 else if(fill==Ice Enum()){ //icefront finding itself against another icefront (pressure imbalance is fully compensated, ice vs ice)460 else if(fill==IceFillEnum()){ //icefront finding itself against another icefront (pressure imbalance is fully compensated, ice vs ice) 461 461 pressure=0; 462 462 } -
issm/trunk/src/m/enum/WaterEnum.m
r1727 r1729 7 7 % macro=WaterEnum() 8 8 9 macro= 601;9 macro=501;
Note:
See TracChangeset
for help on using the changeset viewer.