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 790 by mmeineke, Mon Sep 29 21:16:11 2003 UTC vs.
Revision 853 by mmeineke, Thu Nov 6 19:11:38 2003 UTC

# Line 1 | Line 1
1 < #include <cstdlib>
2 < #include <cstring>
3 < #include <cmath>
1 > #include <stdlib.h>
2 > #include <string.h>
3 > #include <math.h>
4  
5   #include <iostream>
6   using namespace std;
# 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 515 | Line 530 | void SimInfo::setRcut( double theRcut ){
530  
531   void SimInfo::setRcut( double theRcut ){
532  
518  if( !haveOrigRcut ){
519    haveOrigRcut = 1;
520    origRcut = theRcut;
521  }
522
533    rCut = theRcut;
534    checkCutOffs();
535   }
536  
537 < void SimInfo::setEcr( double theEcr ){
537 > void SimInfo::setDefaultRcut( double theRcut ){
538  
539 <  if( !haveOrigEcr ){
540 <    haveOrigEcr = 1;
541 <    origEcr = theEcr;
532 <  }
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 + }
547 +
548 + void SimInfo::setEcr( double theEcr ){
549 +
550    ecr = theEcr;
551    checkCutOffs();
552   }
553  
554 + void SimInfo::setDefaultEcr( double theEcr ){
555 +
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 +
566   void SimInfo::setEcr( double theEcr, double theEst ){
567  
568    est = theEst;
569    setEcr( theEcr );
570   }
571  
572 + void SimInfo::setDefaultEcr( double theEcr, double theEst ){
573  
574 +  est = theEst;
575 +  setDefaultEcr( theEcr );
576 + }
577 +
578 +
579   void SimInfo::checkCutOffs( void ){
580  
581    int cutChanged = 0;
# Line 608 | Line 642 | void SimInfo::checkCutOffs( void ){
642      ( rCut > ecr )? rList = rCut + 1.0: rList = ecr + 1.0;
643      
644      if( cutChanged ){
611      
645        notifyFortranCutOffs( &rCut, &rList, &ecr, &est );
646      }
647      

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines