Changes between Initial Version and Version 1 of Ticket #666
- Timestamp:
- 06/23/15 21:26:37 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #666
- Property Resolution → Fixed
- Property Status new → closed
-
Ticket #666 – Description
initial v1 1 I thought we had taken care of this, but it is not corrected in the main repository. This is only for the error checking, and will not change resu tls. But can you update this for nesting.F1 I thought we had taken care of this, but it is not corrected in the main repository. This is only for the error checking, and will not change results since this is the diagnostic quantities for debugging mass and volume conservation. But can you update this for '''nesting.F''': 2 2 3 1) line 754 has 4 EastSum=WestSum+BRY_CONTACT(ieast,cr)%Mflux(Jbf) 5 but should probably be 6 EastSum=EastSum+BRY_CONTACT(ieast,cr)%Mflux(Jbf) 3 * Line 754 needs to change from 7 4 8 2) 767 from 5 {{{ 6 EastSum=WestSum+BRY_CONTACT(ieast,cr)%Mflux(Jbf) 7 to 8 EastSum=EastSum+BRY_CONTACT(ieast,cr)%Mflux(Jbf) 9 }}} 10 11 * Line 767 needs to change from 12 13 {{{ 9 14 MFratio=REFINED(cr)%DU_avg2(1,m,tnew)/WestSum 10 15 to 11 16 MFratio=REFINED(cr)%DU_avg2(1,m,tnew)/EastSum 17 }}} 12 18 13 3) 871 from 19 * Line 817 needs to change from 20 21 {{{ 22 IF (EastSum.ne.0) THEN 23 to 24 IF (SouthSum.ne.0) THEN 25 }}} 26 27 * Line 859 needs to change from 28 29 {{{ 30 m=BRY_CONTACT(isouth,cr)%C2Bindex(Ibf) ! pick last one 31 to 32 m=BRY_CONTACT(inorth,cr)%C2Bindex(Ibf) ! pick last one 33 34 }}} 35 36 * Line 869-870 need to change from 37 38 {{{ 39 IF (EastSum.ne.0) THEN 14 40 MFratio=REFINED(cr)%DV_avg2(1,m,tnew)/SouthSum 15 41 to 42 IF (NorthSum.ne.0) THEN 16 43 MFratio=REFINED(cr)%DV_avg2(1,m,tnew)/NorthSum 44 }}} 17 45 18 46 19