/**
  * Starts Java application.
  *
  * @param args command line parameters
  */
 public static void main(String args[]) {
   CalculationControl.createApp(new IsingAutoCorrelatorApp());
 }
 /**
  * The main method starts the Java application.
  *
  * @param args[] the input parameters
  */
 public static void main(String[] args) {
   CalculationControl.createApp(new SchroedingerApp(), args);
 }
Beispiel #3
0
 public static void main(String[] args) {
   // creates the program and reads xml data using command line arguments
   CalculationControl.createApp(new ParticleApp(), args);
   // command line arguments are optional
   // use args[0] = "default_particles.xml" to read the example
 }
 /**
  * Starts the Java application.
  *
  * @param args command line parameters
  */
 public static void main(String[] args) { // sets up calculation control structure using this class
   CalculationControl.createApp(new FallingParticlePlotApp());
 }
Beispiel #5
0
 public static void main(String[] args) {
   CalculationControl.createApp(new MeanFieldApp(), args);
 }
 /**
  * Starts the Java application.
  *
  * @param args command line parameters
  */
 public static void main(
     String[] args) { // creates a calculation control structure using this class
   CalculationControl.createApp(new DrawingWorldApp());
 }
Beispiel #7
0
 public static void main(String[] args) {
   CalculationControl.createApp(new CameraApp());
 }