Skip to content

Commit

Permalink
refact: rename packages (#1156)
Browse files Browse the repository at this point in the history
  • Loading branch information
asmfstatoil authored Oct 28, 2024
1 parent e999736 commit 9c1068d
Show file tree
Hide file tree
Showing 66 changed files with 291 additions and 372 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import neqsim.fluidmechanics.flownode.twophasenode.TwoPhaseFlowNode;
import neqsim.fluidmechanics.geometrydefinitions.GeometryDefinitionInterface;
import neqsim.fluidmechanics.geometrydefinitions.reactor.ReactorData;
import neqsim.physicalproperties.physicalpropertysystem.PhysicalPropertyModel;
import neqsim.physicalproperties.system.PhysicalPropertyModel;
import neqsim.thermo.system.SystemFurstElectrolyteEos;
import neqsim.thermo.system.SystemInterface;
import neqsim.thermodynamicoperations.ThermodynamicOperations;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package neqsim.fluidmechanics.flowsystem.twophaseflowsystem.twophasepipeflowsystem;

import neqsim.physicalproperties.physicalpropertysystem.PhysicalPropertyModel;
import neqsim.physicalproperties.system.PhysicalPropertyModel;
import neqsim.thermo.system.SystemFurstElectrolyteEos;
import neqsim.thermo.system.SystemInterface;
import neqsim.thermodynamicoperations.ThermodynamicOperations;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties;
import neqsim.physicalproperties.physicalpropertysystem.PhysicalPropertyModel;
import neqsim.physicalproperties.physicalpropertysystem.commonphasephysicalproperties.DefaultPhysicalProperties;
import neqsim.physicalproperties.physicalpropertysystem.gasphysicalproperties.GasPhysicalProperties;
import neqsim.physicalproperties.physicalpropertysystem.liquidphysicalproperties.AminePhysicalProperties;
import neqsim.physicalproperties.physicalpropertysystem.liquidphysicalproperties.CO2waterPhysicalProperties;
import neqsim.physicalproperties.physicalpropertysystem.liquidphysicalproperties.GlycolPhysicalProperties;
import neqsim.physicalproperties.physicalpropertysystem.liquidphysicalproperties.LiquidPhysicalProperties;
import neqsim.physicalproperties.physicalpropertysystem.liquidphysicalproperties.WaterPhysicalProperties;
import neqsim.physicalproperties.physicalpropertysystem.solidphysicalproperties.SolidPhysicalProperties;
import neqsim.physicalproperties.system.PhysicalProperties;
import neqsim.physicalproperties.system.PhysicalPropertyModel;
import neqsim.physicalproperties.system.commonphasephysicalproperties.DefaultPhysicalProperties;
import neqsim.physicalproperties.system.gasphysicalproperties.GasPhysicalProperties;
import neqsim.physicalproperties.system.liquidphysicalproperties.AminePhysicalProperties;
import neqsim.physicalproperties.system.liquidphysicalproperties.CO2waterPhysicalProperties;
import neqsim.physicalproperties.system.liquidphysicalproperties.GlycolPhysicalProperties;
import neqsim.physicalproperties.system.liquidphysicalproperties.LiquidPhysicalProperties;
import neqsim.physicalproperties.system.liquidphysicalproperties.WaterPhysicalProperties;
import neqsim.physicalproperties.system.solidphysicalproperties.SolidPhysicalProperties;
import neqsim.thermo.phase.PhaseInterface;

/**
Expand Down Expand Up @@ -99,7 +99,7 @@ public void setPhysicalProperties(PhaseInterface phase, PhysicalPropertyModel pp
* </p>
*
* @param phase a {@link neqsim.thermo.phase.PhaseInterface} object
* @return a {@link neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties} object
* @return a {@link neqsim.physicalproperties.system.PhysicalProperties} object
*/
public PhysicalProperties getPhysicalProperties(PhaseInterface phase) {
switch (phase.getType()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
* Created on 3. august 2001, 22:49
*/

package neqsim.physicalproperties.physicalpropertymethods;
package neqsim.physicalproperties.methods;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties;
import neqsim.physicalproperties.system.PhysicalProperties;

/**
* <p>
Expand All @@ -27,7 +27,7 @@ public abstract class PhysicalPropertyMethod implements PhysicalPropertyMethodIn
* Constructor for PhysicalPropertyMethod.
* </p>
*
* @param phase a {@link neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties} object
* @param phase a {@link neqsim.physicalproperties.system.PhysicalProperties} object
*/
public PhysicalPropertyMethod(PhysicalProperties phase) {
setPhase(phase);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
* Created on 21. august 2001, 13:20
*/

package neqsim.physicalproperties.physicalpropertymethods;
package neqsim.physicalproperties.methods;

import neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties;
import neqsim.physicalproperties.system.PhysicalProperties;

/**
* <p>
Expand All @@ -22,9 +22,7 @@ public interface PhysicalPropertyMethodInterface extends Cloneable, java.io.Seri
* clone.
* </p>
*
* @return a
* {@link neqsim.physicalproperties.physicalpropertymethods.PhysicalPropertyMethodInterface}
* object
* @return a {@link neqsim.physicalproperties.methods.PhysicalPropertyMethodInterface} object
*/
public PhysicalPropertyMethodInterface clone();

Expand All @@ -33,7 +31,7 @@ public interface PhysicalPropertyMethodInterface extends Cloneable, java.io.Seri
* setPhase.
* </p>
*
* @param phase a {@link neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties} object
* @param phase a {@link neqsim.physicalproperties.system.PhysicalProperties} object
*/
public void setPhase(PhysicalProperties phase);

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package neqsim.physicalproperties.physicalpropertymethods.commonphasephysicalproperties;
package neqsim.physicalproperties.methods.commonphasephysicalproperties;

import neqsim.physicalproperties.physicalpropertymethods.PhysicalPropertyMethod;
import neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties;
import neqsim.physicalproperties.methods.PhysicalPropertyMethod;
import neqsim.physicalproperties.system.PhysicalProperties;

/**
* <p>
Expand All @@ -21,8 +21,7 @@ public abstract class CommonPhysicalPropertyMethod extends PhysicalPropertyMetho
* Constructor for CommonPhysicalPropertyMethod.
* </p>
*
* @param phase a {@link neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties}
* object
* @param phase a {@link neqsim.physicalproperties.system.PhysicalProperties} object
*/
public CommonPhysicalPropertyMethod(PhysicalProperties phase) {
super(phase);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package neqsim.physicalproperties.physicalpropertymethods.commonphasephysicalproperties.conductivity;
package neqsim.physicalproperties.methods.commonphasephysicalproperties.conductivity;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import neqsim.physicalproperties.physicalpropertymethods.commonphasephysicalproperties.CommonPhysicalPropertyMethod;
import neqsim.physicalproperties.physicalpropertymethods.methodinterface.ConductivityInterface;
import neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties;
import neqsim.physicalproperties.methods.commonphasephysicalproperties.CommonPhysicalPropertyMethod;
import neqsim.physicalproperties.methods.methodinterface.ConductivityInterface;
import neqsim.physicalproperties.system.PhysicalProperties;

/**
* Abstract class for Conductivity.
Expand All @@ -23,8 +23,7 @@ public abstract class Conductivity extends CommonPhysicalPropertyMethod
* Constructor for Conductivity.
* </p>
*
* @param phase a {@link neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties}
* object
* @param phase a {@link neqsim.physicalproperties.system.PhysicalProperties} object
*/
public Conductivity(PhysicalProperties phase) {
super(phase);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package neqsim.physicalproperties.physicalpropertymethods.commonphasephysicalproperties.conductivity;
package neqsim.physicalproperties.methods.commonphasephysicalproperties.conductivity;

import neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties;
import neqsim.physicalproperties.system.PhysicalProperties;
import neqsim.thermo.ThermodynamicConstantsInterface;
import neqsim.thermo.system.SystemInterface;
import neqsim.thermo.system.SystemSrkEos;
Expand Down Expand Up @@ -40,7 +40,7 @@ public class PFCTConductivityMethodMod86 extends Conductivity {
* Constructor for PFCTConductivityMethodMod86.
* </p>
*
* @param phase a {@link neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties} object
* @param phase a {@link neqsim.physicalproperties.system.PhysicalProperties} object
*/
public PFCTConductivityMethodMod86(PhysicalProperties phase) {
super(phase);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package neqsim.physicalproperties.physicalpropertymethods.commonphasephysicalproperties.diffusivity;
package neqsim.physicalproperties.methods.commonphasephysicalproperties.diffusivity;

import neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties;
import neqsim.physicalproperties.system.PhysicalProperties;
import neqsim.thermo.phase.PhaseType;

/**
Expand All @@ -22,7 +22,7 @@ public class CorrespondingStatesDiffusivity extends Diffusivity {
* Constructor for CorrespondingStatesDiffusivity.
* </p>
*
* @param phase a {@link neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties} object
* @param phase a {@link neqsim.physicalproperties.system.PhysicalProperties} object
*/
public CorrespondingStatesDiffusivity(PhysicalProperties phase) {
super(phase);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package neqsim.physicalproperties.physicalpropertymethods.commonphasephysicalproperties.diffusivity;
package neqsim.physicalproperties.methods.commonphasephysicalproperties.diffusivity;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import neqsim.physicalproperties.physicalpropertymethods.commonphasephysicalproperties.CommonPhysicalPropertyMethod;
import neqsim.physicalproperties.physicalpropertymethods.methodinterface.DiffusivityInterface;
import neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties;
import neqsim.physicalproperties.methods.commonphasephysicalproperties.CommonPhysicalPropertyMethod;
import neqsim.physicalproperties.methods.methodinterface.DiffusivityInterface;
import neqsim.physicalproperties.system.PhysicalProperties;

/**
* <p>
Expand All @@ -27,8 +27,7 @@ public class Diffusivity extends CommonPhysicalPropertyMethod implements Diffusi
* Constructor for Diffusivity.
* </p>
*
* @param phase a {@link neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties}
* object
* @param phase a {@link neqsim.physicalproperties.system.PhysicalProperties} object
*/
public Diffusivity(PhysicalProperties phase) {
super(phase);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package neqsim.physicalproperties.physicalpropertymethods.commonphasephysicalproperties.viscosity;
package neqsim.physicalproperties.methods.commonphasephysicalproperties.viscosity;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties;
import neqsim.physicalproperties.system.PhysicalProperties;

/**
* <p>
Expand Down Expand Up @@ -55,7 +55,7 @@ public class FrictionTheoryViscosityMethod extends Viscosity
* Constructor for FrictionTheoryViscosityMethod.
* </p>
*
* @param phase a {@link neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties} object
* @param phase a {@link neqsim.physicalproperties.system.PhysicalProperties} object
*/
public FrictionTheoryViscosityMethod(PhysicalProperties phase) {
super(phase);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package neqsim.physicalproperties.physicalpropertymethods.commonphasephysicalproperties.viscosity;
package neqsim.physicalproperties.methods.commonphasephysicalproperties.viscosity;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties;
import neqsim.physicalproperties.system.PhysicalProperties;

/**
* <p>
Expand All @@ -23,7 +23,7 @@ public class LBCViscosityMethod extends Viscosity {
* Constructor for LBCViscosityMethod.
* </p>
*
* @param phase a {@link neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties} object
* @param phase a {@link neqsim.physicalproperties.system.PhysicalProperties} object
*/
public LBCViscosityMethod(PhysicalProperties phase) {
super(phase);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
* Created on 1. august 2001, 12:44
*/

package neqsim.physicalproperties.physicalpropertymethods.commonphasephysicalproperties.viscosity;
package neqsim.physicalproperties.methods.commonphasephysicalproperties.viscosity;

import neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties;
import neqsim.physicalproperties.system.PhysicalProperties;
import neqsim.thermo.ThermodynamicConstantsInterface;
import neqsim.thermo.system.SystemInterface;
import neqsim.thermo.system.SystemSrkEos;
Expand Down Expand Up @@ -46,7 +46,7 @@ public class PFCTViscosityMethod extends Viscosity {
* Constructor for PFCTViscosityMethod.
* </p>
*
* @param phase a {@link neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties} object
* @param phase a {@link neqsim.physicalproperties.system.PhysicalProperties} object
*/
public PFCTViscosityMethod(PhysicalProperties phase) {
super(phase);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package neqsim.physicalproperties.physicalpropertymethods.commonphasephysicalproperties.viscosity;
package neqsim.physicalproperties.methods.commonphasephysicalproperties.viscosity;

import neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties;
import neqsim.physicalproperties.system.PhysicalProperties;
import neqsim.thermo.ThermodynamicConstantsInterface;
import neqsim.thermo.system.SystemInterface;
import neqsim.thermo.system.SystemSrkEos;
Expand Down Expand Up @@ -46,7 +46,7 @@ public class PFCTViscosityMethodHeavyOil extends Viscosity {
* Constructor for PFCTViscosityMethodHeavyOil.
* </p>
*
* @param phase a {@link neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties} object
* @param phase a {@link neqsim.physicalproperties.system.PhysicalProperties} object
*/
public PFCTViscosityMethodHeavyOil(PhysicalProperties phase) {
super(phase);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package neqsim.physicalproperties.physicalpropertymethods.commonphasephysicalproperties.viscosity;
package neqsim.physicalproperties.methods.commonphasephysicalproperties.viscosity;

import neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties;
import neqsim.physicalproperties.system.PhysicalProperties;
import neqsim.thermo.ThermodynamicConstantsInterface;
import neqsim.thermo.system.SystemInterface;
import neqsim.thermo.system.SystemSrkEos;
Expand Down Expand Up @@ -41,7 +41,7 @@ public class PFCTViscosityMethodMod86 extends Viscosity {
* Constructor for PFCTViscosityMethodMod86.
* </p>
*
* @param phase a {@link neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties} object
* @param phase a {@link neqsim.physicalproperties.system.PhysicalProperties} object
*/
public PFCTViscosityMethodMod86(PhysicalProperties phase) {
super(phase);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package neqsim.physicalproperties.physicalpropertymethods.commonphasephysicalproperties.viscosity;
package neqsim.physicalproperties.methods.commonphasephysicalproperties.viscosity;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import neqsim.physicalproperties.physicalpropertymethods.commonphasephysicalproperties.CommonPhysicalPropertyMethod;
import neqsim.physicalproperties.physicalpropertymethods.methodinterface.ViscosityInterface;
import neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties;
import neqsim.physicalproperties.methods.commonphasephysicalproperties.CommonPhysicalPropertyMethod;
import neqsim.physicalproperties.methods.methodinterface.ViscosityInterface;
import neqsim.physicalproperties.system.PhysicalProperties;

/**
* Abstract class for Viscosity property.
Expand All @@ -22,8 +22,7 @@ public abstract class Viscosity extends CommonPhysicalPropertyMethod implements
* Constructor for Viscosity.
* </p>
*
* @param phase a {@link neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties}
* object
* @param phase a {@link neqsim.physicalproperties.system.PhysicalProperties} object
*/
public Viscosity(PhysicalProperties phase) {
super(phase);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package neqsim.physicalproperties.physicalpropertymethods.gasphysicalproperties;
package neqsim.physicalproperties.methods.gasphysicalproperties;

import neqsim.physicalproperties.physicalpropertymethods.PhysicalPropertyMethod;
import neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties;
import neqsim.physicalproperties.methods.PhysicalPropertyMethod;
import neqsim.physicalproperties.system.PhysicalProperties;

/**
* <p>
Expand All @@ -24,8 +24,7 @@ public abstract class GasPhysicalPropertyMethod extends PhysicalPropertyMethod {
* Constructor for GasPhysicalPropertyMethod.
* </p>
*
* @param gasPhase a {@link neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties}
* object
* @param gasPhase a {@link neqsim.physicalproperties.system.PhysicalProperties} object
*/
public GasPhysicalPropertyMethod(PhysicalProperties gasPhase) {
super(gasPhase);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package neqsim.physicalproperties.physicalpropertymethods.gasphysicalproperties.conductivity;
package neqsim.physicalproperties.methods.gasphysicalproperties.conductivity;

import neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties;
import neqsim.physicalproperties.system.PhysicalProperties;

/**
* <p>
Expand All @@ -20,7 +20,7 @@ public class ChungConductivityMethod extends Conductivity {
* Constructor for ChungConductivityMethod.
* </p>
*
* @param gasPhase a {@link neqsim.physicalproperties.physicalpropertysystem.PhysicalProperties} object
* @param gasPhase a {@link neqsim.physicalproperties.system.PhysicalProperties} object
*/
public ChungConductivityMethod(PhysicalProperties gasPhase) {
super(gasPhase);
Expand Down
Loading

0 comments on commit 9c1068d

Please sign in to comment.