Ejemplo n.º 1
0
 public void NextSegregatedStep()
 {
     if (Timestep.Length == 3)
     {
         Timestep = Timestep.NextIteration();
     }
     else
     {
         throw new ApplicationException();
     }
 }
Ejemplo n.º 2
0
        public void NextSIMPLEIteration()
        {
            if (Timestep.Length == 2)
            {
                Timestep = Timestep.NextIteration();
            }
            else if (Timestep.Length == 3)
            {
                Timestep = Timestep.NextSubIteration();
            }
            else
            {
                throw new ApplicationException();
            }

            SIMPLEStepNoTotal++;

            IsConverged     = false;
            TerminateSIMPLE = false;
            SaveStep        = false;
        }