diff --git a/src/main/java/neqsim/physicalproperties/physicalpropertymethods/PhysicalPropertyMethod.java b/src/main/java/neqsim/physicalproperties/physicalpropertymethods/PhysicalPropertyMethod.java index 6b4cb13f6..c742e51cc 100644 --- a/src/main/java/neqsim/physicalproperties/physicalpropertymethods/PhysicalPropertyMethod.java +++ b/src/main/java/neqsim/physicalproperties/physicalpropertymethods/PhysicalPropertyMethod.java @@ -11,13 +11,13 @@ /** *
- * PhysicalPropertyMethod class. + * Abstract PhysicalPropertyMethod class. *
* * @author esol * @version $Id: $Id */ -public class PhysicalPropertyMethod implements PhysicalPropertyMethodInterface { +public abstract class PhysicalPropertyMethod implements PhysicalPropertyMethodInterface { private static final long serialVersionUID = 1000; static Logger logger = LogManager.getLogger(PhysicalPropertyMethod.class); @@ -42,15 +42,9 @@ public PhysicalPropertyMethod clone() { return properties; } - /** {@inheritDoc} */ - @Override - public void setPhase( - neqsim.physicalproperties.physicalpropertysystem.PhysicalPropertiesInterface phase) {} - /** {@inheritDoc} */ @Override public void tuneModel(double val, double temperature, double pressure) { throw new UnsupportedOperationException("Unimplemented method 'tuneModel'"); } - // should contain phase objects ++ get diffusivity methods .. more ? }