Changes between Version 14 and Version 15 of AccretionDiskTutorial
- Timestamp:
- 08/28/12 11:53:45 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AccretionDiskTutorial
v14 v15 119 119 Depending on the initial conditions of a specific run it may be the case that a disk undergoes gravitational collapse and its boundaries can expand within reasonable limits. This event can cause a significant part of the disk to outflow the refined area, and a consequential loss of information. 120 120 121 ''ProblemSetErrFlag'' can be altered in order to address this issue:121 ''ProblemSetErrFlag'' can be altered to address this issue, changing 122 122 123 {{{ 124 if (sqrt((x-xloc(1))**2+(y-xloc(2))**2).le.radius/lScale+2d0*dx) Info%ErrFlag(i,j,k)=1 125 }}} 123 126 127 to 128 129 {{{ 130 if (sqrt((x-xloc(1))**2+(y-xloc(2))**2).le.radius*1.2d0/lScale+2d0*dx) Info%ErrFlag(i,j,k)=1 131 }}} 132 133 the refined radius can be increased. 134 135 [[Image(refined.png, 800px)]] 124 136 125 137 [[BR]]