Skip to content

Commit

Permalink
docfix: revert
Browse files Browse the repository at this point in the history
  • Loading branch information
asmfstatoil committed Mar 1, 2024
1 parent 1679b80 commit 82cd003
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/main/java/neqsim/thermo/component/ComponentEos.java
Original file line number Diff line number Diff line change
Expand Up @@ -732,8 +732,8 @@ public double getdUdVdnS(PhaseInterface phase) {
* </p>
*
* @param phase a {@link neqsim.thermo.phase.PhaseInterface} object
* @param compIndex1 a int
* @param compIndex2 a int
* @param compNumb1 a int
* @param compNumb2 a int
* @return a double
*/
public double getdUdndnSV(PhaseInterface phase, int compNumb1, int compNumb2) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/neqsim/thermo/component/ComponentSrkCPA.java
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ public double[][] getXsitedni() {
* </p>
*
* @param xNumb a int
* @param compIndexi a int
* @param compNumbi a int
* @return a double
*/
public double getXsitedni(int xNumb, int compNumbi) {
Expand Down
10 changes: 5 additions & 5 deletions src/main/java/neqsim/thermo/phase/PhaseInterface.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ public interface PhaseInterface extends ThermodynamicConstantsInterface, Cloneab
* addcomponent.
* </p>
*
* @param component_name Name of component.
* @param name Name of component.
* @param moles Total number of moles of component.
* @param molesInPhase Number of moles in phase.
* @param compnumber Index number of component in phase object component array.
* @param compIndex Index number of component in phase object component array.
*/
public void addComponent(String name, double moles, double molesInPhase, int compNumber);
public void addComponent(String name, double moles, double molesInPhase, int compIndex);

/**
* <p>
Expand Down Expand Up @@ -421,10 +421,10 @@ public void init(double totalNumberOfMoles, int numberOfComponents, int initType
* removeComponent.
* </p>
*
* @param component_name Name of component.
* @param name Name of component.
* @param moles Total number of moles of component.
* @param molesInPhase Number of moles in phase.
* @param compnumber Index number of component in phase object component array.
* @param compNumber Index number of component in phase object component array.
*/
public void removeComponent(String name, double moles, double molesInPhase, int compNumber);

Expand Down

0 comments on commit 82cd003

Please sign in to comment.