Changes between Initial Version and Version 1 of Ticket #385
- Timestamp:
- 12/12/09 05:21:21 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #385
- Property Resolution → Fixed
- Property Status new → closed
- Property Summary def_rst 2d option → Bug in def_rst.F for perfect restart in 2D configurations
-
Ticket #385 – Description
initial v1 1 def_rst.F 2 need to move 2d only logic out of a solve3d loop 1 In '''def_rst.F''' we need to move 2D only logic out of a '''SOLVE3D''' loop. This is needed for the radiation stresses. 2 {{{ 3 Lines 460-464: 3 4 4 Lines 460-4645 5 su2dgrd(1)=DimIDs(18) 6 6 su2dgrd(2)=DimIDs(12) … … 8 8 sv2dgrd(2)=DimIDs(12) 9 9 10 and Lines 472-477 10 and Lines 472-477: 11 11 12 su2dgrd(1)=DimIDs( 2) 12 13 su2dgrd(2)=DimIDs( 6) … … 15 16 sv2dgrd(2)=DimIDs( 7) 16 17 sv2dgrd(3)=DimIDs(12) 18 }}} 19 They need to be moved down about 20 lines outside of the '''SOLVE3D''' loop. 17 20 18 19 need to be moved down about 20 lines outside of the SOLVE3D loop.20 (need to keep the !restart etc criteria).21