コード例 #1
0
ファイル: PhaseInterfacial.cs プロジェクト: Netkidxp/TPLC
 public PhaseInterfacial(double sigma, double aspectRatio, DRAG_TYPE drag, VIRTUAL_MASS_TYPE virtualMass, HEAT_TRANSFER_TYPE heatTransfer, LIFT_TYPE lift, double pMin)
 {
     this.sigma        = sigma;
     this.aspectRatio  = aspectRatio;
     this.drag         = drag;
     this.virtualMass  = virtualMass;
     this.heatTransfer = heatTransfer;
     this.lift         = lift;
     this.pMin         = pMin;
 }
コード例 #2
0
ファイル: PhaseInterfacial.cs プロジェクト: Netkidxp/TPLC
 public PhaseInterfacial()
 {
     sigma        = 0.07;
     aspectRatio  = 1.0;
     drag         = DRAG_TYPE.SchillerNaumann;
     virtualMass  = VIRTUAL_MASS_TYPE.ConstantCoefficient;
     heatTransfer = HEAT_TRANSFER_TYPE.RanzMarshall;
     lift         = LIFT_TYPE.NoLift;
     pMin         = 10000;
 }