2020-08-18 14:27:28 +02:00
|
|
|
/*
|
|
|
|
* =======================================================================================
|
|
|
|
*
|
2020-08-19 10:47:40 +02:00
|
|
|
* Author: Jan Eitzinger (je), jan.eitzinger@fau.de
|
|
|
|
* Copyright (c) 2020 RRZE, University Erlangen-Nuremberg
|
2020-08-18 14:27:28 +02:00
|
|
|
*
|
2020-08-19 10:47:40 +02:00
|
|
|
* This file is part of MD-Bench.
|
2020-08-18 14:27:28 +02:00
|
|
|
*
|
2020-08-19 10:47:40 +02:00
|
|
|
* MD-Bench is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU Lesser General Public License as published
|
|
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2020-08-18 14:27:28 +02:00
|
|
|
*
|
2020-08-19 10:47:40 +02:00
|
|
|
* MD-Bench is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
|
|
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
|
|
|
* details.
|
2020-08-18 14:27:28 +02:00
|
|
|
*
|
2020-08-19 10:47:40 +02:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
* with MD-Bench. If not, see <https://www.gnu.org/licenses/>.
|
2020-08-18 14:27:28 +02:00
|
|
|
* =======================================================================================
|
|
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
#include <thermo.h>
|
|
|
|
|
|
|
|
static int *steparr;
|
|
|
|
static double *tmparr;
|
|
|
|
static double *engarr;
|
|
|
|
static double *prsarr;
|
|
|
|
static double mvv2e;
|
|
|
|
static int dof_boltz;
|
|
|
|
static double t_scale;
|
|
|
|
static double p_scale;
|
|
|
|
static double e_scale;
|
|
|
|
static double t_act;
|
|
|
|
static double p_act;
|
|
|
|
static double e_act;
|
|
|
|
static int mstat;
|
|
|
|
|
2020-08-19 09:00:35 +02:00
|
|
|
/* exported subroutines */
|
2020-08-18 14:27:28 +02:00
|
|
|
void setupThermo(Parameter *param, int natoms)
|
|
|
|
{
|
|
|
|
int maxstat = param->ntimes / param->nstat + 2;
|
|
|
|
|
|
|
|
steparr = (int*) malloc(maxstat * sizeof(int));
|
|
|
|
tmparr = (double*) malloc(maxstat * sizeof(double));
|
|
|
|
engarr = (double*) malloc(maxstat * sizeof(double));
|
|
|
|
prsarr = (double*) malloc(maxstat * sizeof(double));
|
|
|
|
|
|
|
|
mvv2e = 1.0;
|
|
|
|
dof_boltz = (natoms * 3 - 3);
|
|
|
|
t_scale = mvv2e / dof_boltz;
|
|
|
|
p_scale = 1.0 / 3 / param->xprd / param->yprd / param->zprd;
|
|
|
|
e_scale = 0.5;
|
|
|
|
|
|
|
|
printf("step\ttemp\t\tpressure\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void computeThermo(int iflag, Parameter *param, Atom *atom)
|
|
|
|
{
|
|
|
|
double t = 0.0, p;
|
|
|
|
double* vx = atom->vx;
|
|
|
|
double* vy = atom->vy;
|
|
|
|
double* vz = atom->vz;
|
|
|
|
|
|
|
|
for(int i = 0; i < atom->Nlocal; i++) {
|
|
|
|
t += (vx[i] * vx[i] + vy[i] * vy[i] + vz[i] * vz[i]) * param->mass;
|
|
|
|
}
|
|
|
|
|
|
|
|
t = t * t_scale;
|
|
|
|
p = (t * dof_boltz) * p_scale;
|
|
|
|
|
|
|
|
int istep = iflag;
|
|
|
|
|
|
|
|
if(iflag == -1){
|
|
|
|
istep = param->ntimes;
|
|
|
|
}
|
|
|
|
if(iflag == 0){
|
|
|
|
mstat = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
steparr[mstat] = istep;
|
|
|
|
tmparr[mstat] = t;
|
|
|
|
prsarr[mstat] = p;
|
|
|
|
mstat++;
|
|
|
|
fprintf(stdout, "%i\t%e\t%e\n", istep, t, p);
|
|
|
|
}
|
|
|
|
|
|
|
|
void adjustThermo(Parameter *param, Atom *atom)
|
|
|
|
{
|
|
|
|
/* zero center-of-mass motion */
|
|
|
|
double vxtot = 0.0; double vytot = 0.0; double vztot = 0.0;
|
|
|
|
double* vx = atom->vx; double* vy = atom->vy; double* vz = atom->vz;
|
|
|
|
|
|
|
|
for(int i = 0; i < atom->Nlocal; i++) {
|
|
|
|
vxtot += vx[i];
|
|
|
|
vytot += vy[i];
|
|
|
|
vztot += vz[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
vxtot = vxtot / atom->Natoms;
|
|
|
|
vytot = vytot / atom->Natoms;
|
|
|
|
vztot = vztot / atom->Natoms;
|
|
|
|
|
|
|
|
for(int i = 0; i < atom->Nlocal; i++) {
|
|
|
|
vx[i] -= vxtot;
|
|
|
|
vy[i] -= vytot;
|
|
|
|
vz[i] -= vztot;
|
|
|
|
}
|
|
|
|
|
|
|
|
t_act = 0;
|
|
|
|
double t = 0.0;
|
|
|
|
|
|
|
|
for(int i = 0; i < atom->Nlocal; i++) {
|
|
|
|
t += (vx[i] * vx[i] + vy[i] * vy[i] + vz[i] * vz[i]) * param->mass;
|
|
|
|
}
|
|
|
|
|
|
|
|
t *= t_scale;
|
|
|
|
double factor = sqrt(param->temp / t);
|
|
|
|
|
|
|
|
for(int i = 0; i < atom->Nlocal; i++) {
|
|
|
|
vx[i] *= factor;
|
|
|
|
vy[i] *= factor;
|
|
|
|
vz[i] *= factor;
|
|
|
|
}
|
|
|
|
}
|