Exemple #1
0
        public DataTable SimularUnCiclo() // simula un único ciclo y da la tabla con los resultados
        {
            Nozzle newnozzle = new Nozzle(this.nozzle);

            newnozzle.EjecutarCiclo(this.At, this.Ax, 1.4);
            newnozzle.ActualizarEstados();

            return(newnozzle.GetEstado(this.Ax));
        }
Exemple #2
0
        public DataTable SimularHastaSteady() // simula 1400 ciclos y da la tabla con los resultados
        {
            Nozzle newnozzle = new Nozzle(this.nozzle);

            int step = 0;

            while (step <= 1400)
            {
                newnozzle.EjecutarCiclo(this.At, this.Ax, 1.4);
                newnozzle.ActualizarEstados();

                step++;
            }

            return(newnozzle.GetEstado(this.Ax));
        }