ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE_old/src/mdtools/libmdCode/SimInfo.hpp
Revision: 270
Committed: Fri Feb 14 17:08:46 2003 UTC (21 years, 5 months ago) by mmeineke
File size: 2748 byte(s)
Log Message:
added libmdCode and a couple help scripts

File Contents

# Content
1 #ifndef __SIMINFO_H__
2 #define __SIMINFO_H__
3
4
5
6 #include "Atom.hpp"
7 #include "Molecule.hpp"
8 #include "AbstractClasses.hpp"
9 #include "MakeStamps.hpp"
10
11 class SimInfo{
12
13 public:
14
15 SimInfo();
16 ~SimInfo(){}
17
18 int n_atoms; // the number of atoms
19 Atom **atoms; // the array of atom objects
20
21 unsigned int n_bonds; // number of bends
22 unsigned int n_bends; // number of bends
23 unsigned int n_torsions; // number of torsions
24 unsigned int n_oriented; // number of of atoms with orientation
25
26 unsigned int setTemp; // boolean to set the temperature at each sampleTime
27
28 unsigned int n_dipoles; // number of dipoles
29 double rRF; // the reaction field cut off radius
30 double dielectric; // the dielectric of the medium for reaction field
31
32 unsigned int n_exclude; // the number of pairs excluded from LJ and VDW
33 ex_pair *excludes; // the pairs themselves
34
35 int n_constraints; // the number of constraints on the system
36
37 unsigned int n_SRI; // the number of short range interactions
38 SRI **sr_interactions;// the array of short range force objects
39
40 double lrPot; // the potential energy from the long range calculations.
41
42 double box_x, box_y, box_z; // the periodic boundry conditions
43 double rList, rCut; // variables for the neighborlist
44
45 double dt, run_time; // the time step and total time
46 double sampleTime, statusTime; // the position and energy dump frequencies
47 double target_temp; // the target temperature of the system
48 double thermalTime; // the temp kick interval
49
50 int n_mol; // n_molecules;
51 Molecule* molecules; // the array of molecules
52
53 int nComponents; // the number of componentsin the system
54 int* componentsNmol; // the number of molecules of each component
55 MoleculeStamp** compStamps;// the stamps matching the components
56 LinkedMolStamp* headStamp; // list of stamps used in the simulation
57
58
59
60 Integrator *the_integrator; // the integrator of the simulation
61
62 char finalName[300]; // the name of the eor file to be written
63 char sampleName[300]; // the name of the dump file to be written
64 char statusName[300]; // the name of the stat file to be written
65
66
67 // refreshes the sim if things get changed (lode balanceing, volume
68 // adjustment, etc.)
69
70 void refreshSim( void );
71
72
73 // sets the internal function pointer to fortran.
74
75 void setInternal( void (*fSetup)( int*, double*, double*, double*) ){
76 setFsimulation = fSetup;
77 }
78
79 private:
80
81 // function to wrap the fortran function
82 void wrapMe();
83
84 // private function to initialize the fortran side of the simulation
85 void (*setFsimulation)(int* nLocal, double *boxSizeArray,
86 double* rList, double* rCut );
87
88
89 };
90
91
92
93 #endif