ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/SimInfo.cpp
(Generate patch)

Comparing trunk/OOPSE/libmdtools/SimInfo.cpp (file contents):
Revision 843 by mmeineke, Wed Oct 29 20:41:39 2003 UTC vs.
Revision 853 by mmeineke, Thu Nov 6 19:11:38 2003 UTC

# Line 146 | Line 146 | void SimInfo::calcHmatInv( void ) {
146  
147   void SimInfo::calcHmatInv( void ) {
148    
149 +  int oldOrtho;
150    int i,j;
151    double smallDiag;
152    double tol;
# Line 153 | Line 154 | void SimInfo::calcHmatInv( void ) {
154  
155    invertMat3( Hmat, HmatInv );
156  
156  // Check the inverse to make sure it is sane:
157
158  matMul3( Hmat, HmatInv, sanity );
159    
157    // check to see if Hmat is orthorhombic
158    
159 <  smallDiag = Hmat[0][0];
160 <  if(smallDiag > Hmat[1][1]) smallDiag = Hmat[1][1];
161 <  if(smallDiag > Hmat[2][2]) smallDiag = Hmat[2][2];
159 >  oldOrtho = orthoRhombic;
160 >
161 >  smallDiag = fabs(Hmat[0][0]);
162 >  if(smallDiag > fabs(Hmat[1][1])) smallDiag = fabs(Hmat[1][1]);
163 >  if(smallDiag > fabs(Hmat[2][2])) smallDiag = fabs(Hmat[2][2]);
164    tol = smallDiag * 1E-6;
165  
166    orthoRhombic = 1;
# Line 170 | Line 169 | void SimInfo::calcHmatInv( void ) {
169      for (j = 0 ; j < 3; j++) {
170        if (i != j) {
171          if (orthoRhombic) {
172 <          if (Hmat[i][j] >= tol) orthoRhombic = 0;
172 >          if ( fabs(Hmat[i][j]) >= tol) orthoRhombic = 0;
173          }        
174        }
175      }
176    }
177 +
178 +  if( oldOrtho != orthoRhombic ){
179 +    
180 +    if( orthoRhombic ){
181 +      sprintf( painCave.errMsg,
182 +               "Hmat is switching from Non-Orthorhombic to OrthoRhombic\n"
183 +               "       If this is a bad thing change the ortho tolerance in SimInfo.\n" );
184 +      simError();
185 +    }
186 +    else {
187 +      sprintf( painCave.errMsg,
188 +               "Hmat is switching from Orthorhombic to Non-OrthoRhombic\n"
189 +               "       If this is a bad thing change the ortho tolerance in SimInfo.\n" );
190 +      simError();
191 +    }
192 +  }
193   }
194  
195   double SimInfo::matDet3(double a[3][3]) {
# Line 524 | Line 539 | void SimInfo::setDefaultRcut( double theRcut ){
539    haveOrigRcut = 1;
540    origRcut = theRcut;
541    rCut = theRcut;
542 +
543 +  ( rCut > ecr )? rList = rCut + 1.0: rList = ecr + 1.0;
544  
545    notifyFortranCutOffs( &rCut, &rList, &ecr, &est );
546   }
# Line 539 | Line 556 | void SimInfo::setDefaultEcr( double theEcr ){
556    haveOrigEcr = 1;
557    origEcr = theEcr;
558    
559 +  ( rCut > ecr )? rList = rCut + 1.0: rList = ecr + 1.0;
560 +
561    ecr = theEcr;
562 +
563    notifyFortranCutOffs( &rCut, &rList, &ecr, &est );
564   }
565  
# Line 622 | Line 642 | void SimInfo::checkCutOffs( void ){
642      ( rCut > ecr )? rList = rCut + 1.0: rList = ecr + 1.0;
643      
644      if( cutChanged ){
625      
645        notifyFortranCutOffs( &rCut, &rList, &ecr, &est );
646      }
647      

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines