Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
EvenSol committed Feb 5, 2024
1 parent 74b4190 commit ef9ebe5
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public void calcDesign() {
innerDiameter = Math.sqrt(4.0 * getMaxDesignVolumeFlow()
/ (neqsim.thermo.ThermodynamicConstantsInterface.pi * maxGasVelocity * Fg));
tantanLength = innerDiameter * 5.0;
System.out.println("inner Diameter " + innerDiameter);
// System.out.println("inner Diameter " + innerDiameter);

// calculating from standard codes
// sepLength = innerDiameter * 2.0;
Expand All @@ -98,7 +98,7 @@ public void calcDesign() {
internalsWeight += sect.getTotalWeight();
}

System.out.println("internal weight " + internalsWeight);
// System.out.println("internal weight " + internalsWeight);

externalNozzelsWeight = 0.0;
double Wv = emptyVesselWeight + internalsWeight + externalNozzelsWeight;
Expand All @@ -111,14 +111,14 @@ public void calcDesign() {
moduleLength = innerDiameter * 2.5;
moduleLength = tantanLength * 1.5;
moduleHeight = innerDiameter * 2;

System.out.println("wall thickness: " + separator.getName() + " " + getWallThickness() + " m");
System.out.println("separator dry weigth: " + emptyVesselWeight + " kg");
System.out.println("total skid weigth: " + totalSkidWeight + " kg");
System.out.println("foot print: width:" + moduleWidth + " length " + moduleLength + " height "
+ moduleHeight + " meter.");
System.out.println("mechanical price: " + materialsCost + " kNOK");

/*
* System.out.println("wall thickness: " + separator.getName() + " " + getWallThickness() +
* " m"); System.out.println("separator dry weigth: " + emptyVesselWeight + " kg");
* System.out.println("total skid weigth: " + totalSkidWeight + " kg");
* System.out.println("foot print: width:" + moduleWidth + " length " + moduleLength +
* " height " + moduleHeight + " meter."); System.out.println("mechanical price: " +
* materialsCost + " kNOK");
*/
setWeigthVesselShell(emptyVesselWeight);

tantanLength = innerDiameter * 5;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,12 +188,12 @@ public void calcDesign() {
double sepratorLength = tantanLength + innerDiameter;

if (sepratorLength / innerDiameter > 6 || sepratorLength / innerDiameter < 3) {
System.out
.println("Fg need to be modified ... L/D separator= " + sepratorLength / innerDiameter);
// System.out
// .println("Fg need to be modified ... L/D separator= " + sepratorLength / innerDiameter);
tantanLength = innerDiameter * 5.0;
sepratorLength = tantanLength + innerDiameter;
}
System.out.println("inner Diameter " + innerDiameter);
// System.out.println("inner Diameter " + innerDiameter);

// alternative design
double bubbleDiameter = 250.0e-6;
Expand All @@ -219,7 +219,7 @@ public void calcDesign() {
internalsWeight += sep.getMechanicalDesign().getTotalWeight();
}

System.out.println("internal weight " + internalsWeight);
// System.out.println("internal weight " + internalsWeight);

externalNozzelsWeight = 0.0; // need to be implemented
double Wv = emptyVesselWeight + internalsWeight + externalNozzelsWeight;
Expand All @@ -233,14 +233,14 @@ public void calcDesign() {
moduleHeight = innerDiameter * 2 + 1.0;
// }


System.out.println("wall thickness: " + separator.getName() + " " + getWallThickness() + " m");
System.out.println("separator dry weigth: " + emptyVesselWeight + " kg");
System.out.println("total skid weigth: " + totalSkidWeight + " kg");
System.out.println("foot print: width:" + moduleWidth + " length " + moduleLength + " height "
+ moduleHeight + " meter.");
System.out.println("mechanical price: " + materialsCost + " kNOK");

/*
* System.out.println("wall thickness: " + separator.getName() + " " + getWallThickness() +
* " m"); System.out.println("separator dry weigth: " + emptyVesselWeight + " kg");
* System.out.println("total skid weigth: " + totalSkidWeight + " kg");
* System.out.println("foot print: width:" + moduleWidth + " length " + moduleLength +
* " height " + moduleHeight + " meter."); System.out.println("mechanical price: " +
* materialsCost + " kNOK");
*/
setWeigthVesselShell(emptyVesselWeight);

// tantanLength = innerDiameter * 5;
Expand Down

0 comments on commit ef9ebe5

Please sign in to comment.