Changeset 2293 for trunk/source/dynamics.cpp
- Timestamp:
- 07/31/08 03:20:34 (5 months ago)
- Files:
-
- 1 modified
-
trunk/source/dynamics.cpp (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/dynamics.cpp
r2133 r2293 595 595 596 596 /* identically zero velocities cannot occur */ 597 ASSERT( wind.windv != 0. || (wind.windv == 0. && dynamics.lg Static) );597 ASSERT( wind.windv != 0. || (wind.windv == 0. && dynamics.lgTimeDependentStatic) ); 598 598 599 599 return factor; … … 612 612 DEBUG_ENTRY( "DynaIonize()" ); 613 613 614 /* the time (s) needed for gas to move Dyn_dr */615 /* >>chng 02 dec 11 rjrw increase timestep when beyond end of previous zone, to allow -> eqm */616 if( !dynamics.lg Static )614 /* the time (s) needed for gas to move dynamics.Dyn_dr */ 615 /* >>chng 02 dec 11 rjrw increase dynamics.timestep when beyond end of previous zone, to allow -> eqm */ 616 if( !dynamics.lgTimeDependentStatic ) 617 617 { 618 618 /* in time dependent model timestep only changes once at end of iteration … … 1293 1293 1294 1294 /* !dynamics.lgStatic true - a true dynamical model */ 1295 if( !dynamics.lg Static )1295 if( !dynamics.lgTimeDependentStatic ) 1296 1296 { 1297 1297 if(iteration == dynamics.n_initial_relax+1 ) … … 1765 1765 1766 1766 /* vars that determine whether time dependent soln only - set with time command */ 1767 dynamics.lg Static = false;1767 dynamics.lgTimeDependentStatic = false; 1768 1768 timestep_init = -1.; 1769 1769 /* this factor multiplies the time step */ … … 1997 1997 1998 1998 /*flag set true when time dependent only */ 1999 dynamics.lg Static = true;1999 dynamics.lgTimeDependentStatic = true; 2000 2000 2001 2001 i = 5;
