Skip to content

Commit c39aaee

Browse files
committed
remove output
1 parent e561f34 commit c39aaee

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/main/java/neqsim/processSimulation/processEquipment/pipeline/AdiabaticPipe.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,9 @@ public double calcPressureOut() {
159159
* system.getTemperature() / Math.pow(insideDiameter, 5.0);
160160
// \\System.out.println("friction fact" + frictionFactor + " velocity " +
161161
// velocity + " reynolds number " + reynoldsNumber);
162-
System.out.println("dp gravity "
163-
+ system.getDensity("kg/m3") * neqsim.thermo.ThermodynamicConstantsInterface.gravity
164-
* (inletElevation - outletElevation) / 1.0e5);
162+
// System.out.println("dp gravity "
163+
// + system.getDensity("kg/m3") * neqsim.thermo.ThermodynamicConstantsInterface.gravity
164+
// * (inletElevation - outletElevation) / 1.0e5);
165165
double dp_gravity =
166166
system.getDensity("kg/m3") * neqsim.thermo.ThermodynamicConstantsInterface.gravity
167167
* (inletElevation - outletElevation);

src/test/java/neqsim/processSimulation/processEquipment/pipeline/PipelineTest.java

-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ public void testMain() {
3030
stream_1.setPressure(pressure, "bara");
3131

3232
stream_1.run();
33-
stream_1.getFluid().prettyPrint();
34-
3533
OnePhasePipeLine pipeline = new OnePhasePipeLine("pipeline", stream_1);
3634
pipeline.setNumberOfLegs(1);
3735
pipeline.setPipeDiameters(new double[] {diameter, diameter});

0 commit comments

Comments
 (0)