Skip to content

Commit

Permalink
remove output
Browse files Browse the repository at this point in the history
  • Loading branch information
EvenSol committed Jan 8, 2024
1 parent e561f34 commit c39aaee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,9 @@ public double calcPressureOut() {
* system.getTemperature() / Math.pow(insideDiameter, 5.0);
// \\System.out.println("friction fact" + frictionFactor + " velocity " +
// velocity + " reynolds number " + reynoldsNumber);
System.out.println("dp gravity "
+ system.getDensity("kg/m3") * neqsim.thermo.ThermodynamicConstantsInterface.gravity
* (inletElevation - outletElevation) / 1.0e5);
// System.out.println("dp gravity "
// + system.getDensity("kg/m3") * neqsim.thermo.ThermodynamicConstantsInterface.gravity
// * (inletElevation - outletElevation) / 1.0e5);
double dp_gravity =
system.getDensity("kg/m3") * neqsim.thermo.ThermodynamicConstantsInterface.gravity
* (inletElevation - outletElevation);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ public void testMain() {
stream_1.setPressure(pressure, "bara");

stream_1.run();
stream_1.getFluid().prettyPrint();

OnePhasePipeLine pipeline = new OnePhasePipeLine("pipeline", stream_1);
pipeline.setNumberOfLegs(1);
pipeline.setPipeDiameters(new double[] {diameter, diameter});
Expand Down

0 comments on commit c39aaee

Please sign in to comment.