Skip to content

Commit

Permalink
remove capital letters in package names (#1128)
Browse files Browse the repository at this point in the history
* remove capital letters in package names

* further fixes

* further updates

* updates

* further updates

* update

* update

* update
  • Loading branch information
EvenSol authored Oct 6, 2024
1 parent af48a7d commit 1a9b5e5
Show file tree
Hide file tree
Showing 933 changed files with 3,980 additions and 3,919 deletions.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,22 @@
* Created on 4. februar 2001, 20:06
*/

package neqsim.chemicalReactions;
package neqsim.chemicalreactions;

import neqsim.chemicalreactions.chemicalequilibrium.ChemicalEquilibrium;
import neqsim.chemicalreactions.chemicalequilibrium.LinearProgrammingChemicalEquilibrium;
import neqsim.chemicalreactions.chemicalreaction.ChemicalReactionList;
import neqsim.chemicalreactions.kinetics.Kinetics;
import neqsim.thermo.component.ComponentInterface;
import neqsim.thermo.phase.PhaseInterface;
import neqsim.thermo.system.SystemInterface;

import java.util.HashSet;
import java.util.Iterator;

import Jama.Matrix;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import Jama.Matrix;
import neqsim.chemicalReactions.chemicalEquilibriaum.ChemicalEquilibrium;
import neqsim.chemicalReactions.chemicalEquilibriaum.LinearProgrammingChemicalEquilibrium;
import neqsim.chemicalReactions.chemicalReaction.ChemicalReactionList;
import neqsim.chemicalReactions.kinetics.Kinetics;
import neqsim.thermo.component.ComponentInterface;
import neqsim.thermo.phase.PhaseInterface;
import neqsim.thermo.system.SystemInterface;

/**
* <p>
Expand Down Expand Up @@ -465,7 +467,7 @@ public double solveKinetics(int phase, PhaseInterface interPhase, int component)
* getKinetics.
* </p>
*
* @return a {@link neqsim.chemicalReactions.kinetics.Kinetics} object
* @return a {@link neqsim.chemicalreactions.kinetics.Kinetics} object
*/
public Kinetics getKinetics() {
return kineticsSolver;
Expand All @@ -476,7 +478,7 @@ public Kinetics getKinetics() {
* Getter for the field <code>reactionList</code>.
* </p>
*
* @return a {@link neqsim.chemicalReactions.chemicalReaction.ChemicalReactionList} object
* @return a {@link neqsim.chemicalreactions.chemicalreaction.ChemicalReactionList} object
*/
public ChemicalReactionList getReactionList() {
return reactionList;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package neqsim.chemicalReactions.chemicalEquilibriaum;
package neqsim.chemicalreactions.chemicalequilibrium;

import Jama.Matrix;
import neqsim.thermo.ThermodynamicConstantsInterface;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package neqsim.chemicalReactions.chemicalEquilibriaum;
package neqsim.chemicalreactions.chemicalequilibrium;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Created on 11. april 2001, 10:04
*/

package neqsim.chemicalReactions.chemicalEquilibriaum;
package neqsim.chemicalreactions.chemicalequilibrium;

import java.util.ArrayList;
import java.util.Arrays;
Expand All @@ -22,7 +22,7 @@
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import Jama.Matrix;
import neqsim.chemicalReactions.ChemicalReactionOperations;
import neqsim.chemicalreactions.ChemicalReactionOperations;
import neqsim.thermo.component.ComponentInterface;
import neqsim.thermo.system.SystemInterface;

Expand Down Expand Up @@ -59,7 +59,7 @@ public class LinearProgrammingChemicalEquilibrium
* @param chemRefPot an array of type double
* @param components an array of {@link neqsim.thermo.component.ComponentInterface} objects
* @param elements an array of {@link java.lang.String} objects
* @param operations a {@link neqsim.chemicalReactions.ChemicalReactionOperations} object
* @param operations a {@link neqsim.chemicalreactions.ChemicalReactionOperations} object
* @param phase a int
*/
public LinearProgrammingChemicalEquilibrium(double[] chemRefPot, ComponentInterface[] components,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Created on 11. april 2001, 20:21
*/

package neqsim.chemicalReactions.chemicalEquilibriaum;
package neqsim.chemicalreactions.chemicalequilibrium;

import java.util.Comparator;
import neqsim.thermo.component.ComponentInterface;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Created on 4. februar 2001, 15:32
*/

package neqsim.chemicalReactions.chemicalReaction;
package neqsim.chemicalreactions.chemicalreaction;

import Jama.Matrix;
import neqsim.thermo.component.ComponentInterface;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Created on 20. september 2004, 22:40
*/

package neqsim.chemicalReactions.chemicalReaction;
package neqsim.chemicalreactions.chemicalreaction;

import java.util.ArrayList;
import org.apache.logging.log4j.LogManager;
Expand Down Expand Up @@ -32,7 +32,7 @@ private ChemicalReactionFactory() {}
* </p>
*
* @param name a {@link java.lang.String} object
* @return a {@link neqsim.chemicalReactions.chemicalReaction.ChemicalReaction} object
* @return a {@link neqsim.chemicalreactions.chemicalreaction.ChemicalReaction} object
*/
public static ChemicalReaction getChemicalReaction(String name) {
ArrayList<String> names = new ArrayList<String>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Created on 4. februar 2001, 15:32
*/

package neqsim.chemicalReactions.chemicalReaction;
package neqsim.chemicalreactions.chemicalreaction;

import java.util.ArrayList;
import java.util.Arrays;
Expand Down Expand Up @@ -122,7 +122,7 @@ public void readReactions(SystemInterface system) {
* </p>
*
* @param i a int
* @return a {@link neqsim.chemicalReactions.chemicalReaction.ChemicalReaction} object
* @return a {@link neqsim.chemicalreactions.chemicalreaction.ChemicalReaction} object
*/
public ChemicalReaction getReaction(int i) {
return chemicalReactionList.get(i);
Expand All @@ -134,7 +134,7 @@ public ChemicalReaction getReaction(int i) {
* </p>
*
* @param name a {@link java.lang.String} object
* @return a {@link neqsim.chemicalReactions.chemicalReaction.ChemicalReaction} object
* @return a {@link neqsim.chemicalreactions.chemicalreaction.ChemicalReaction} object
*/
public ChemicalReaction getReaction(String name) {
for (int i = 0; i < chemicalReactionList.size(); i++) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
* Created on 3. august 2001, 23:05
*/

package neqsim.chemicalReactions.kinetics;
package neqsim.chemicalreactions.kinetics;

import java.util.Iterator;
import neqsim.chemicalReactions.ChemicalReactionOperations;
import neqsim.chemicalReactions.chemicalReaction.ChemicalReaction;
import neqsim.chemicalreactions.ChemicalReactionOperations;
import neqsim.chemicalreactions.chemicalreaction.ChemicalReaction;
import neqsim.thermo.phase.PhaseInterface;

/**
Expand All @@ -30,7 +30,7 @@ public class Kinetics implements java.io.Serializable {
* Constructor for Kinetics.
* </p>
*
* @param operations a {@link neqsim.chemicalReactions.ChemicalReactionOperations} object
* @param operations a {@link neqsim.chemicalreactions.ChemicalReactionOperations} object
*/
public Kinetics(ChemicalReactionOperations operations) {
this.operations = operations;
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
package neqsim.dataPresentation;
package neqsim.datapresentation;

import java.io.BufferedOutputStream;
import java.io.DataOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.text.DecimalFormat;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

Expand All @@ -16,15 +17,15 @@
* @author Even Solbraa
* @version $Id: $Id
*/
public class dataHandeling {
static Logger logger = LogManager.getLogger(dataHandeling.class);
public class DataHandeling {
static Logger logger = LogManager.getLogger(DataHandeling.class);

/**
* <p>
* Constructor for dataHandeling.
* </p>
*/
public dataHandeling() {}
public DataHandeling() {}

/**
* Returns the number of items in the specified series.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* 02111-1307, USA.
*/

package neqsim.dataPresentation;
package neqsim.datapresentation;

/**
* A dummy data source for an XY plot.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package neqsim.dataPresentation.fileHandeling.createTextFile;
package neqsim.datapresentation.filehandeling.createtextfile;

import java.io.File;
import java.io.FileWriter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
* Created on 17. juni 2000, 17:16
*/

package neqsim.dataPresentation.JFreeChart;
package neqsim.datapresentation.jfreechart;

import java.awt.Color;
import java.awt.image.BufferedImage;
import javax.swing.BorderFactory;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.jfree.chart.ChartFactory;
Expand All @@ -27,9 +28,9 @@
* @author Even Solbraa
* @version $Id: $Id
*/
public class graph2b extends javax.swing.JFrame {
public class Graph2b extends javax.swing.JFrame {
private static final long serialVersionUID = 1000;
static Logger logger = LogManager.getLogger(graph2b.class);
static Logger logger = LogManager.getLogger(Graph2b.class);

XYDataset xyData;
String titl;
Expand All @@ -41,7 +42,7 @@ public class graph2b extends javax.swing.JFrame {
* Constructor for graph2b.
* </p>
*/
public graph2b() {
public Graph2b() {
initComponents();
pack();
}
Expand All @@ -53,7 +54,7 @@ public graph2b() {
*
* @param points an array of type double
*/
public graph2b(double[][] points) {
public Graph2b(double[][] points) {
String[] seriesNames = new String[points.length];
for (int i = 0; i < points.length; i++) {
seriesNames[i] = "";
Expand Down Expand Up @@ -103,7 +104,7 @@ public graph2b(double[][] points) {
* @param xaxis a {@link java.lang.String} object
* @param yaxis a {@link java.lang.String} object
*/
public graph2b(double[][] points, String[] seriesNames, String tit, String xaxis, String yaxis) {
public Graph2b(double[][] points, String[] seriesNames, String tit, String xaxis, String yaxis) {
XYSeriesCollection seriesCol = new XYSeriesCollection();

for (int serLen = 0; serLen < points.length / 2; serLen++) {
Expand Down Expand Up @@ -146,7 +147,7 @@ public graph2b(double[][] points, String[] seriesNames, String tit, String xaxis
* @param xaxis a {@link java.lang.String} object
* @param yaxis a {@link java.lang.String} object
*/
public graph2b(double[][] xpoints, double[][] points, String[] seriesNames, String tit,
public Graph2b(double[][] xpoints, double[][] points, String[] seriesNames, String tit,
String xaxis, String yaxis) {
XYSeriesCollection seriesCol = new XYSeriesCollection();

Expand Down Expand Up @@ -307,7 +308,7 @@ public ChartPanel getChartPanel() {
* @param args the command line arguments
*/
public static void main(String[] args) {
new graph2b().setVisible(true);
new Graph2b().setVisible(true);
}

/**
Expand Down
Binary file not shown.
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package neqsim.fluidMechanics;
package neqsim.fluidmechanics;

/**
* <p>
Expand All @@ -8,5 +8,5 @@
* @author esol
* @version $Id: $Id
*/
public class fluidMech {
public class FluidMech {
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
* Created on 8. desember 2000, 19:30
*/

package neqsim.fluidMechanics.flowLeg;
package neqsim.fluidmechanics.flowleg;

import neqsim.fluidMechanics.flowNode.FlowNodeInterface;
import neqsim.fluidMechanics.flowNode.FlowNodeSelector;
import neqsim.fluidMechanics.geometryDefinitions.GeometryDefinitionInterface;
import neqsim.fluidmechanics.flownode.FlowNodeInterface;
import neqsim.fluidmechanics.flownode.FlowNodeSelector;
import neqsim.fluidmechanics.geometrydefinitions.GeometryDefinitionInterface;
import neqsim.thermo.system.SystemInterface;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
* Created on 11. desember 2000, 17:47
*/

package neqsim.fluidMechanics.flowLeg;
package neqsim.fluidmechanics.flowleg;

import neqsim.fluidMechanics.flowNode.FlowNodeInterface;
import neqsim.fluidMechanics.geometryDefinitions.GeometryDefinitionInterface;
import neqsim.fluidmechanics.flownode.FlowNodeInterface;
import neqsim.fluidmechanics.geometrydefinitions.GeometryDefinitionInterface;
import neqsim.thermo.system.SystemInterface;

/**
Expand All @@ -34,7 +34,7 @@ public interface FlowLegInterface {
* </p>
*
* @param equipmentGeometry a
* {@link neqsim.fluidMechanics.geometryDefinitions.GeometryDefinitionInterface} object
* {@link neqsim.fluidmechanics.geometrydefinitions.GeometryDefinitionInterface} object
*/
public void setEquipmentGeometry(GeometryDefinitionInterface equipmentGeometry);

Expand Down Expand Up @@ -83,7 +83,7 @@ public void setLongitudionalCoordinates(double startLongitudionalCoordinate,
* createFlowNodes.
* </p>
*
* @param node a {@link neqsim.fluidMechanics.flowNode.FlowNodeInterface} object
* @param node a {@link neqsim.fluidmechanics.flownode.FlowNodeInterface} object
*/
public void createFlowNodes(FlowNodeInterface node);

Expand All @@ -109,7 +109,7 @@ public void setLongitudionalCoordinates(double startLongitudionalCoordinate,
* </p>
*
* @param i a int
* @return a {@link neqsim.fluidMechanics.flowNode.FlowNodeInterface} object
* @return a {@link neqsim.fluidmechanics.flownode.FlowNodeInterface} object
*/
public FlowNodeInterface getNode(int i);

Expand All @@ -118,7 +118,7 @@ public void setLongitudionalCoordinates(double startLongitudionalCoordinate,
* getFlowNodes.
* </p>
*
* @return an array of {@link neqsim.fluidMechanics.flowNode.FlowNodeInterface} objects
* @return an array of {@link neqsim.fluidmechanics.flownode.FlowNodeInterface} objects
*/
public FlowNodeInterface[] getFlowNodes();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
* Created on 8. desember 2000, 19:32
*/

package neqsim.fluidMechanics.flowLeg.pipeLeg;
package neqsim.fluidmechanics.flowleg.pipeleg;

import neqsim.fluidMechanics.flowLeg.FlowLeg;
import neqsim.fluidMechanics.flowNode.FlowNodeInterface;
import neqsim.fluidmechanics.flowleg.FlowLeg;
import neqsim.fluidmechanics.flownode.FlowNodeInterface;

/**
* <p>
Expand Down
Loading

0 comments on commit 1a9b5e5

Please sign in to comment.