Changes between Initial Version and Version 1 of Ticket #385


Ignore:
Timestamp:
12/12/09 05:21:21 (15 years ago)
Author:
arango
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #385

    • Property ResolutionFixed
    • Property Status newclosed
    • Property Summary def_rst 2d optionBug 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
     1In '''def_rst.F''' we need to move 2D only logic out of a '''SOLVE3D''' loop. This is needed for the radiation stresses.
     2{{{
     3Lines 460-464:
    34
    4 Lines 460-464
    55        su2dgrd(1)=DimIDs(18)
    66        su2dgrd(2)=DimIDs(12)
     
    88        sv2dgrd(2)=DimIDs(12)
    99
    10 and Lines 472-477
     10and Lines 472-477:
     11
    1112        su2dgrd(1)=DimIDs( 2)
    1213        su2dgrd(2)=DimIDs( 6)
     
    1516        sv2dgrd(2)=DimIDs( 7)
    1617        sv2dgrd(3)=DimIDs(12)
     18}}}
     19They need to be moved down about 20 lines outside of the '''SOLVE3D''' loop.
    1720
    18 
    19 need to be moved down about 20 lines outside of the SOLVE3D loop.
    20 (need to keep the !restart etc criteria).
    21