Skip to content

Commit

Permalink
chore: remove non-implemented FileWriter classes (#848)
Browse files Browse the repository at this point in the history
  • Loading branch information
asmfstatoil authored Dec 22, 2023
1 parent 8e45f5a commit 20730e9
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 152 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import neqsim.fluidMechanics.flowNode.FlowNodeInterface;
import neqsim.fluidMechanics.flowSolver.FlowSolverInterface;
import neqsim.fluidMechanics.geometryDefinitions.GeometryDefinitionInterface;
import neqsim.fluidMechanics.util.fluidMechanicsDataHandeling.FileWriterInterface;
import neqsim.fluidMechanics.util.fluidMechanicsVisualization.flowSystemVisualization.FlowSystemVisualizationInterface;
import neqsim.fluidMechanics.util.timeSeries.TimeSeries;
import neqsim.thermo.system.SystemInterface;
Expand All @@ -29,7 +28,6 @@ public abstract class FlowSystem implements FlowSystemInterface, java.io.Seriali

protected FlowNodeInterface[] flowNode;
protected FlowLegInterface[] flowLeg;
protected FileWriterInterface[] fileWriter;
protected String initFlowPattern = "annular";
protected FlowSystemVisualizationInterface display;
protected TimeSeries timeSeries = new TimeSeries();
Expand Down Expand Up @@ -250,12 +248,6 @@ public FlowSystemVisualizationInterface getDisplay() {
return display;
}

/** {@inheritDoc} */
@Override
public FileWriterInterface getFileWriter(int i) {
return fileWriter[i];
}

/** {@inheritDoc} */
@Override
public void setNumberOfNodesInLeg(int numberOfNodesInLeg) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import neqsim.fluidMechanics.flowNode.FlowNodeInterface;
import neqsim.fluidMechanics.flowSolver.FlowSolverInterface;
import neqsim.fluidMechanics.geometryDefinitions.GeometryDefinitionInterface;
import neqsim.fluidMechanics.util.fluidMechanicsDataHandeling.FileWriterInterface;
import neqsim.fluidMechanics.util.fluidMechanicsVisualization.flowSystemVisualization.FlowSystemVisualizationInterface;
import neqsim.fluidMechanics.util.timeSeries.TimeSeries;
import neqsim.thermo.system.SystemInterface;
Expand Down Expand Up @@ -79,17 +78,6 @@ public default void solveTransient(int type) {
*/
public FlowSystemVisualizationInterface getDisplay();

/**
* <p>
* getFileWriter.
* </p>
*
* @param i a int
* @return a {@link neqsim.fluidMechanics.util.fluidMechanicsDataHandeling.FileWriterInterface}
* object
*/
public FileWriterInterface getFileWriter(int i);

/**
* <p>
* getSolver.
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

0 comments on commit 20730e9

Please sign in to comment.