| 9 |
|
#include "ReadWrite.hpp" |
| 10 |
|
#include "ExtendedSystem.hpp" |
| 11 |
|
|
| 12 |
+ |
#include "simError.h" |
| 13 |
+ |
|
| 14 |
|
extern "C"{ |
| 15 |
|
|
| 16 |
|
void v_constrain_a_( double &dt, int &n_atoms, double* mass, |
| 19 |
|
double* Fx, double* Fy, double* Fz, |
| 20 |
|
int &n_constrained, double *constr_sqr, |
| 21 |
|
int* constr_i, int* constr_j, |
| 22 |
< |
double &box_x, double &box_y, double &box_z ); |
| 22 |
> |
double &box_x, double &box_y, double &box_z, |
| 23 |
> |
int &isError ); |
| 24 |
|
|
| 25 |
|
void v_constrain_b_( double &dt, int &n_atoms, double* mass, |
| 26 |
|
double* Rx, double* Ry, double* Rz, |
| 29 |
|
double &Kinetic, |
| 30 |
|
int &n_constrained, double *constr_sqr, |
| 31 |
|
int* constr_i, int* constr_j, |
| 32 |
< |
double &box_x, double &box_y, double &box_z ); |
| 32 |
> |
double &box_x, double &box_y, double &box_z, |
| 33 |
> |
int &isError); |
| 34 |
|
} |
| 35 |
|
|
| 36 |
|
|
| 202 |
|
int status_n = (int)( statusTime / dt ); |
| 203 |
|
int vel_n = (int)( thermalTime / dt ); |
| 204 |
|
|
| 205 |
+ |
int isError; |
| 206 |
+ |
|
| 207 |
|
Thermo *tStats = new Thermo( entry_plug ); |
| 208 |
|
|
| 209 |
|
StatWriter* e_out = new StatWriter( entry_plug ); |
| 232 |
|
if( c_is_constrained ){ |
| 233 |
|
for(i = 0; i < n_loops; i++){ |
| 234 |
|
|
| 229 |
– |
if (!strcasecmp( entry_plug->ensemble, "NVT")) |
| 230 |
– |
myES->NoseHooverNVT( dt / 2.0 , tStats->getKinetic() ); |
| 235 |
|
|
| 236 |
|
// fill R, V, and F arrays and RATTLE in fortran |
| 237 |
|
|
| 251 |
|
|
| 252 |
|
} |
| 253 |
|
|
| 254 |
+ |
isError = 0; |
| 255 |
|
v_constrain_a_( dt, c_natoms, c_mass, Rx, Ry, Rz, Vx, Vy, Vz, |
| 256 |
|
Fx, Fy, Fz, |
| 257 |
|
c_n_constrained, c_constrained_dsqr, |
| 258 |
|
c_constrained_i, c_constrained_j, |
| 259 |
< |
c_box_x, c_box_y, c_box_z ); |
| 259 |
> |
c_box_x, c_box_y, c_box_z, |
| 260 |
> |
isError); |
| 261 |
> |
|
| 262 |
> |
if( isError ){ |
| 263 |
> |
|
| 264 |
> |
sprintf( painCave.errMsg, |
| 265 |
> |
"Constraint Failure in Fortran move A\n" ); |
| 266 |
> |
painCave.isFatal = 1; |
| 267 |
> |
simError(); |
| 268 |
> |
} |
| 269 |
> |
|
| 270 |
> |
#ifdef IS_MPI |
| 271 |
> |
sprintf( checkPointMsg, |
| 272 |
> |
"succesful return from move a.\n" ); |
| 273 |
> |
MPIcheckPoint(); |
| 274 |
> |
|
| 275 |
> |
#endif //is_mpi |
| 276 |
|
|
| 277 |
|
for( j=0; j<c_natoms; j++ ){ |
| 278 |
|
|
| 285 |
|
c_atoms[j]->set_vz(Vz[j]); |
| 286 |
|
} |
| 287 |
|
|
| 288 |
+ |
if (!strcasecmp( entry_plug->ensemble, "NVT")) |
| 289 |
+ |
myES->NoseHooverNVT( dt / 2.0 , tStats->getKinetic() ); |
| 290 |
+ |
|
| 291 |
|
// calculate the forces |
| 292 |
|
|
| 293 |
|
myFF->doForces(calcPot,calcStress); |
| 310 |
|
} |
| 311 |
|
|
| 312 |
|
|
| 313 |
+ |
isError = 0; |
| 314 |
|
v_constrain_b_( dt, c_natoms, c_mass, Rx, Ry, Rz, Vx, Vy, Vz, |
| 315 |
|
Fx, Fy, Fz, |
| 316 |
|
kE, c_n_constrained, c_constrained_dsqr, |
| 317 |
|
c_constrained_i, c_constrained_j, |
| 318 |
< |
c_box_x, c_box_y, c_box_z ); |
| 319 |
< |
|
| 318 |
> |
c_box_x, c_box_y, c_box_z, isError ); |
| 319 |
> |
|
| 320 |
> |
if( isError ){ |
| 321 |
> |
|
| 322 |
> |
sprintf( painCave.errMsg, |
| 323 |
> |
"Constraint Failure in Fortran move B\n" ); |
| 324 |
> |
painCave.isFatal = 1; |
| 325 |
> |
simError(); |
| 326 |
> |
} |
| 327 |
> |
|
| 328 |
> |
#ifdef IS_MPI |
| 329 |
> |
sprintf( checkPointMsg, |
| 330 |
> |
"succesful return from move B.\n" ); |
| 331 |
> |
MPIcheckPoint(); |
| 332 |
> |
|
| 333 |
> |
#endif //is_mpi |
| 334 |
> |
|
| 335 |
> |
|
| 336 |
|
for( j=0; j<c_natoms; j++ ){ |
| 337 |
|
|
| 338 |
|
c_atoms[j]->setX(Rx[j]); |
| 376 |
|
else{ |
| 377 |
|
for(i = 0; i < n_loops; i++){ |
| 378 |
|
|
| 338 |
– |
if (!strcasecmp( entry_plug->ensemble, "NVT")) |
| 339 |
– |
myES->NoseHooverNVT( dt / 2.0, tStats->getKinetic() ); |
| 379 |
|
|
| 380 |
|
move_a( dt ); |
| 381 |
+ |
|
| 382 |
+ |
if (!strcasecmp( entry_plug->ensemble, "NVT")) |
| 383 |
+ |
myES->NoseHooverNVT( dt / 2.0, tStats->getKinetic() ); |
| 384 |
|
|
| 385 |
|
// calculate the forces |
| 386 |
|
|