public Temperature3(TemperatureStar star1, TemperatureStar star2, double tdout, double udk, double BETA, double NRDK, double NADK, double RIN, double ROUT, double FACTOR) :
        base()
    {
        this.primary   = star1;
        this.secondary = star2;
        this.UDK       = udk;
        this.BETA      = BETA;
        this.NRDK      = NRDK;
        this.NADK      = NADK;
        this.RIN       = RIN;
        this.ROUT      = ROUT;
        this.FACTOR    = FACTOR;

        this.initializeVectorandMatrix();
    }
Exemple #2
0
 public Temperature(double angu, double r01, double q2, double tp1, double tp2, double coef1, double coef2, double ab2, double beta, double Base)
 {
     this.primary   = new TemperatureStar(0.87, 0.7);
     this.secondary = new TemperatureStar(0.87, 0.676);
     this.initializeVectorandMatrix();
     this.ANGU = angu;
     this.primary.setR0(r01);
     this.secondary.setQ(q2);
     this.primary.setTP(tp1);
     this.secondary.setTP(tp2);
     this.primary.setCOEF(coef1);
     this.secondary.setCOEF(coef2);
     this.secondary.setAB(ab2);
     this.BETA = beta;
     this.BASE = Base;
 }
Exemple #3
0
 public Temperature()
 {
     this.primary   = new TemperatureStar();
     this.secondary = new TemperatureStar();
     this.initializeVectorandMatrix();
 }