2009-02-28 05:23:41 +08:00
|
|
|
/* ----------------------------------------------------------------------
|
|
|
|
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
|
|
|
http://lammps.sandia.gov, Sandia National Laboratories
|
|
|
|
Steve Plimpton, sjplimp@sandia.gov
|
|
|
|
|
|
|
|
Copyright (2003) Sandia Corporation. Under the terms of Contract
|
|
|
|
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
|
|
|
|
certain rights in this software. This software is distributed under
|
|
|
|
the GNU General Public License.
|
|
|
|
|
|
|
|
See the README file in the top-level LAMMPS directory.
|
|
|
|
------------------------------------------------------------------------- */
|
|
|
|
|
2009-02-28 05:24:57 +08:00
|
|
|
/* ----------------------------------------------------------------------
|
|
|
|
Contributing author: Aidan Thompson (SNL)
|
|
|
|
------------------------------------------------------------------------- */
|
|
|
|
|
2009-02-28 05:23:41 +08:00
|
|
|
#include "math.h"
|
|
|
|
#include "string.h"
|
|
|
|
#include "stdlib.h"
|
|
|
|
#include "fix_box_relax.h"
|
|
|
|
#include "atom.h"
|
|
|
|
#include "domain.h"
|
|
|
|
#include "update.h"
|
|
|
|
#include "force.h"
|
|
|
|
#include "modify.h"
|
|
|
|
#include "compute.h"
|
|
|
|
#include "error.h"
|
|
|
|
|
|
|
|
using namespace LAMMPS_NS;
|
|
|
|
|
|
|
|
enum{XYZ,XY,YZ,XZ,ANISO};
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
FixBoxRelax::FixBoxRelax(LAMMPS *lmp, int narg, char **arg) :
|
|
|
|
Fix(lmp, narg, arg)
|
|
|
|
{
|
|
|
|
if (narg < 4) error->all("Illegal fix box/relax command");
|
|
|
|
|
|
|
|
box_change = 1;
|
|
|
|
|
|
|
|
if (strcmp(arg[3],"xyz") == 0) {
|
|
|
|
if (narg < 5) error->all("Illegal fix box/relax command");
|
|
|
|
press_couple = XYZ;
|
|
|
|
p_target[0] = p_target[1] = p_target[2] = atof(arg[4]);
|
|
|
|
p_flag[0] = p_flag[1] = p_flag[2] = 1;
|
|
|
|
if (domain->dimension == 2) p_flag[2] = 0;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if (strcmp(arg[3],"xy") == 0) press_couple = XY;
|
|
|
|
else if (strcmp(arg[3],"yz") == 0) press_couple = YZ;
|
|
|
|
else if (strcmp(arg[3],"xz") == 0) press_couple = XZ;
|
|
|
|
else if (strcmp(arg[3],"aniso") == 0) press_couple = ANISO;
|
|
|
|
else error->all("Illegal fix box/relax command");
|
|
|
|
|
|
|
|
if (narg < 7) error->all("Illegal fix box/relax command");
|
|
|
|
|
|
|
|
if (domain->dimension == 2 &&
|
|
|
|
(press_couple == XY || press_couple == YZ || press_couple == XZ))
|
|
|
|
error->all("Invalid fix box/relax command for a 2d simulation");
|
|
|
|
|
|
|
|
if (strcmp(arg[4],"NULL") == 0) p_flag[0] = 0;
|
|
|
|
else {
|
|
|
|
p_target[0] = atof(arg[4]);
|
|
|
|
p_flag[0] = 1;
|
|
|
|
}
|
|
|
|
if (strcmp(arg[5],"NULL") == 0) p_flag[1] = 0;
|
|
|
|
else {
|
|
|
|
p_target[1] = atof(arg[5]);
|
|
|
|
p_flag[1] = 1;
|
|
|
|
}
|
|
|
|
if (strcmp(arg[6],"NULL") == 0) p_flag[2] = 0;
|
|
|
|
else {
|
|
|
|
if (domain->dimension == 2)
|
|
|
|
error->all("Invalid fix box/relax command for a 2d simulation");
|
|
|
|
p_target[2] = atof(arg[6]);
|
|
|
|
p_flag[2] = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// process extra keywords
|
|
|
|
|
|
|
|
allremap = 0;
|
|
|
|
|
|
|
|
int iarg;
|
|
|
|
if (press_couple == XYZ) iarg = 5;
|
|
|
|
else iarg = 7;
|
|
|
|
|
|
|
|
while (iarg < narg) {
|
|
|
|
if (strcmp(arg[iarg],"dilate") == 0) {
|
|
|
|
if (iarg+2 > narg) error->all("Illegal fix box/relax command");
|
|
|
|
if (strcmp(arg[iarg+1],"all") == 0) allremap = 0;
|
|
|
|
else if (strcmp(arg[iarg+1],"partial") == 0) allremap = 1;
|
|
|
|
else error->all("Illegal fix box/relax command");
|
|
|
|
iarg += 2;
|
|
|
|
} else error->all("Illegal fix box/relax command");
|
|
|
|
}
|
|
|
|
|
|
|
|
// error checks
|
|
|
|
|
|
|
|
if (press_couple == XY && (p_flag[0] == 0 || p_flag[1] == 0))
|
2009-02-28 05:24:57 +08:00
|
|
|
error->all("Invalid fix box/relax command");
|
2009-02-28 05:23:41 +08:00
|
|
|
if (press_couple == YZ && (p_flag[1] == 0 || p_flag[2] == 0))
|
2009-02-28 05:24:57 +08:00
|
|
|
error->all("Invalid fix box/relax command");
|
2009-02-28 05:23:41 +08:00
|
|
|
if (press_couple == XZ && (p_flag[0] == 0 || p_flag[2] == 0))
|
2009-02-28 05:24:57 +08:00
|
|
|
error->all("Invalid fix box/relax command");
|
2009-02-28 05:23:41 +08:00
|
|
|
|
|
|
|
if (press_couple == XY && p_target[0] != p_target[1])
|
2009-02-28 05:24:57 +08:00
|
|
|
error->all("Invalid fix box/relax command");
|
2009-02-28 05:23:41 +08:00
|
|
|
if (press_couple == YZ && p_target[1] != p_target[2])
|
2009-02-28 05:24:57 +08:00
|
|
|
error->all("Invalid fix box/relax command");
|
2009-02-28 05:23:41 +08:00
|
|
|
if (press_couple == XZ && p_target[0] != p_target[2])
|
2009-02-28 05:24:57 +08:00
|
|
|
error->all("Invalid fix box/relax command");
|
2009-02-28 05:23:41 +08:00
|
|
|
|
|
|
|
if (p_flag[0] && domain->xperiodic == 0)
|
|
|
|
error->all("Cannot use fix box/relax on a non-periodic dimension");
|
|
|
|
if (p_flag[1] && domain->yperiodic == 0)
|
|
|
|
error->all("Cannot use fix box/relax on a non-periodic dimension");
|
|
|
|
if (p_flag[2] && domain->zperiodic == 0)
|
|
|
|
error->all("Cannot use fix box/relax on a non-periodic dimension");
|
|
|
|
|
|
|
|
// create a new compute temp style
|
|
|
|
// id = fix-ID + temp
|
|
|
|
// compute group = all since pressure is always global (group all)
|
|
|
|
// and thus its KE/temperature contribution should use group all
|
|
|
|
|
|
|
|
int n = strlen(id) + 6;
|
|
|
|
id_temp = new char[n];
|
|
|
|
strcpy(id_temp,id);
|
|
|
|
strcat(id_temp,"_temp");
|
|
|
|
|
|
|
|
char **newarg = new char*[3];
|
|
|
|
newarg[0] = id_temp;
|
|
|
|
newarg[1] = (char *) "all";
|
|
|
|
newarg[2] = (char *) "temp";
|
|
|
|
modify->add_compute(3,newarg);
|
|
|
|
delete [] newarg;
|
|
|
|
tflag = 1;
|
|
|
|
|
|
|
|
// create a new compute pressure style
|
|
|
|
// id = fix-ID + press, compute group = all
|
|
|
|
// pass id_temp as 4th arg to pressure constructor
|
|
|
|
|
|
|
|
n = strlen(id) + 7;
|
|
|
|
id_press = new char[n];
|
|
|
|
strcpy(id_press,id);
|
|
|
|
strcat(id_press,"_press");
|
|
|
|
|
|
|
|
newarg = new char*[4];
|
|
|
|
newarg[0] = id_press;
|
|
|
|
newarg[1] = (char *) "all";
|
|
|
|
newarg[2] = (char *) "pressure";
|
|
|
|
newarg[3] = id_temp;
|
|
|
|
modify->add_compute(4,newarg);
|
|
|
|
delete [] newarg;
|
|
|
|
pflag = 1;
|
|
|
|
|
2009-02-28 05:24:57 +08:00
|
|
|
dimension = domain->dimension;
|
2009-02-28 05:23:41 +08:00
|
|
|
nrigid = 0;
|
|
|
|
rfix = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
FixBoxRelax::~FixBoxRelax()
|
|
|
|
{
|
|
|
|
delete [] rfix;
|
|
|
|
|
|
|
|
// delete temperature and pressure if fix created them
|
|
|
|
|
|
|
|
if (tflag) modify->delete_compute(id_temp);
|
|
|
|
if (pflag) modify->delete_compute(id_press);
|
|
|
|
delete [] id_temp;
|
|
|
|
delete [] id_press;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
int FixBoxRelax::setmask()
|
|
|
|
{
|
|
|
|
int mask = 0;
|
|
|
|
mask |= MIN_ENERGY;
|
|
|
|
return mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
void FixBoxRelax::init()
|
|
|
|
{
|
|
|
|
// set temperature and pressure ptrs
|
|
|
|
|
|
|
|
int icompute = modify->find_compute(id_temp);
|
2009-02-28 05:24:57 +08:00
|
|
|
if (icompute < 0) error->all("Temp ID for fix box/relax does not exist");
|
2009-02-28 05:23:41 +08:00
|
|
|
temperature = modify->compute[icompute];
|
|
|
|
|
|
|
|
icompute = modify->find_compute(id_press);
|
2009-02-28 05:24:57 +08:00
|
|
|
if (icompute < 0) error->all("Press ID for fix box/relax does not exist");
|
2009-02-28 05:23:41 +08:00
|
|
|
pressure = modify->compute[icompute];
|
|
|
|
|
|
|
|
// initial box dimensions
|
|
|
|
|
|
|
|
xprdinit = domain->xprd;
|
|
|
|
yprdinit = domain->yprd;
|
|
|
|
zprdinit = domain->zprd;
|
2009-02-28 05:24:57 +08:00
|
|
|
if (dimension == 3) volinit = domain->xprd*domain->yprd*domain->zprd;
|
2009-02-28 05:23:41 +08:00
|
|
|
else volinit = domain->xprd*domain->yprd;
|
|
|
|
pv2e = 1.0 / force->nktv2p;
|
|
|
|
|
|
|
|
// detect if any rigid fixes exist so rigid bodies move when box is remapped
|
|
|
|
// rfix[] = indices to each fix rigid
|
|
|
|
|
|
|
|
delete [] rfix;
|
|
|
|
nrigid = 0;
|
|
|
|
rfix = NULL;
|
|
|
|
|
|
|
|
for (int i = 0; i < modify->nfix; i++)
|
|
|
|
if (modify->fix[i]->rigid_flag) nrigid++;
|
|
|
|
if (nrigid) {
|
|
|
|
rfix = new int[nrigid];
|
|
|
|
nrigid = 0;
|
|
|
|
for (int i = 0; i < modify->nfix; i++)
|
|
|
|
if (modify->fix[i]->rigid_flag) rfix[nrigid++] = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------
|
|
|
|
compute energy and force due to extra degrees of freedom
|
|
|
|
------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
double FixBoxRelax::min_energy(double *fextra)
|
|
|
|
{
|
2009-02-28 05:24:57 +08:00
|
|
|
double eng,scale,scalex,scaley,scalez;
|
2009-02-28 05:23:41 +08:00
|
|
|
|
|
|
|
double t_current = temperature->compute_scalar();
|
|
|
|
if (press_couple == XYZ) {
|
|
|
|
double tmp = pressure->compute_scalar();
|
|
|
|
} else {
|
|
|
|
temperature->compute_vector();
|
|
|
|
pressure->compute_vector();
|
|
|
|
}
|
|
|
|
couple();
|
|
|
|
|
|
|
|
// trigger virial computation on every iteration of minimizer
|
|
|
|
|
|
|
|
pressure->addstep(update->ntimestep+1);
|
|
|
|
|
2009-02-28 05:24:57 +08:00
|
|
|
// compute energy, forces for each extra degree of freedom
|
|
|
|
// returned eng = PV must be in units of energy
|
|
|
|
// returned force = Ptarget - Pcurrent must be in units of
|
|
|
|
|
2009-02-28 05:23:41 +08:00
|
|
|
if (press_couple == XYZ) {
|
|
|
|
scale = domain->xprd/xprdinit;
|
2009-02-28 05:24:57 +08:00
|
|
|
if (dimension == 3) {
|
2009-02-28 05:23:41 +08:00
|
|
|
eng = pv2e * p_target[0] * (scale*scale*scale-1.0)*volinit;
|
|
|
|
fextra[0] = pv2e * (p_current[0] - p_target[0])*3.0*volinit*scale*scale;
|
|
|
|
} else {
|
|
|
|
eng = pv2e * p_target[0] * (scale*scale-1.0)*volinit;
|
|
|
|
fextra[0] = pv2e * (p_current[0] - p_target[0])*2.0*volinit*scale;
|
|
|
|
}
|
2009-02-28 05:24:57 +08:00
|
|
|
|
|
|
|
} else if (press_couple == XY) {
|
2009-02-28 05:23:41 +08:00
|
|
|
scale = domain->xprd/xprdinit;
|
|
|
|
eng = pv2e * p_target[0] * (scale*scale-1.0)*volinit;
|
2009-02-28 05:24:57 +08:00
|
|
|
fextra[0] = pv2e * (p_current[0] - p_target[0])*scale*volinit;
|
|
|
|
if (p_flag[2]) {
|
|
|
|
scale = domain->zprd/zprdinit;
|
|
|
|
eng = pv2e * p_target[2] * (scale*scale-1.0)*volinit;
|
|
|
|
fextra[1] = pv2e * (p_current[1] - p_target[1])*scale*volinit;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (press_couple == YZ) {
|
2009-02-28 05:23:41 +08:00
|
|
|
scale = domain->yprd/yprdinit;
|
|
|
|
eng = pv2e * p_target[1] * (scale*scale-1.0)*volinit;
|
2009-02-28 05:24:57 +08:00
|
|
|
fextra[1] = pv2e * (p_current[1] - p_target[1])*scale*volinit;
|
2009-02-28 05:23:41 +08:00
|
|
|
fextra[0] = 0.0;
|
2009-02-28 05:24:57 +08:00
|
|
|
|
|
|
|
} else if (press_couple == XZ) {
|
2009-02-28 05:23:41 +08:00
|
|
|
scale = domain->xprd/xprdinit;
|
|
|
|
eng = pv2e * p_target[0] * (scale*scale-1.0)*volinit;
|
2009-02-28 05:24:57 +08:00
|
|
|
fextra[0] = pv2e * (p_current[0] - p_target[0])*scale*volinit;
|
2009-02-28 05:23:41 +08:00
|
|
|
fextra[1] = 0.0;
|
2009-02-28 05:24:57 +08:00
|
|
|
|
|
|
|
} else if (press_couple == ANISO) {
|
|
|
|
scalex = domain->xprd/xprdinit;
|
|
|
|
scaley = domain->yprd/yprdinit;
|
|
|
|
scalez = domain->zprd/zprdinit;
|
|
|
|
eng = pv2e * p_target[0] * (scalex*scaley*scalez-1.0)*volinit;
|
|
|
|
int i = 0;
|
|
|
|
if (p_flag[0])
|
|
|
|
fextra[i++] = pv2e * (p_current[0] - p_target[0])*scaley*scalez*volinit;
|
|
|
|
if (p_flag[1])
|
|
|
|
fextra[i++] = pv2e * (p_current[1] - p_target[1])*scalex*scalez*volinit;
|
|
|
|
if (p_flag[2])
|
|
|
|
fextra[i++] = pv2e * (p_current[2] - p_target[2])*scalex*scaley*volinit;
|
2009-02-28 05:23:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return eng;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------
|
|
|
|
store extra dof values for linesearch starting point
|
2009-02-28 05:24:57 +08:00
|
|
|
boxlo0,boxhi0 = box dimensions
|
|
|
|
s0 = ratio of current boxsize to initial boxsize
|
2009-02-28 05:23:41 +08:00
|
|
|
------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
void FixBoxRelax::min_store()
|
|
|
|
{
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
boxlo0[i] = domain->boxlo[i];
|
|
|
|
boxhi0[i] = domain->boxhi[i];
|
|
|
|
}
|
|
|
|
s0[0] = (boxhi0[0]-boxlo0[0])/xprdinit;
|
|
|
|
s0[1] = (boxhi0[1]-boxlo0[1])/yprdinit;
|
|
|
|
s0[2] = (boxhi0[2]-boxlo0[2])/zprdinit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------
|
2009-02-28 05:24:57 +08:00
|
|
|
change the box dimensions by fraction ds = alpha*fextra
|
2009-02-28 05:23:41 +08:00
|
|
|
------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
void FixBoxRelax::min_step(double alpha, double *fextra)
|
|
|
|
{
|
|
|
|
if (press_couple == XYZ) {
|
2009-02-28 05:24:57 +08:00
|
|
|
ds[0] = ds[1] = ds[2] = alpha*fextra[0];
|
|
|
|
} else if (press_couple == XY) {
|
|
|
|
ds[0] = ds[1] = alpha*fextra[0];
|
|
|
|
if (p_flag[2]) ds[2] = alpha*fextra[1];
|
|
|
|
} else if (press_couple == YZ) {
|
|
|
|
ds[1] = ds[2] = alpha*fextra[0];
|
|
|
|
if (p_flag[0]) ds[0] = alpha*fextra[1];
|
|
|
|
} else if (press_couple == XZ) {
|
|
|
|
ds[0] = ds[2] = alpha*fextra[0];
|
|
|
|
if (p_flag[1]) ds[1] = alpha*fextra[1];
|
|
|
|
} else if (press_couple == ANISO) {
|
2009-02-28 05:23:41 +08:00
|
|
|
if (p_flag[0]) ds[0] = alpha*fextra[0];
|
|
|
|
if (p_flag[1]) ds[1] = alpha*fextra[1];
|
|
|
|
if (p_flag[2]) ds[2] = alpha*fextra[2];
|
|
|
|
}
|
|
|
|
|
|
|
|
remap();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------
|
|
|
|
return number of degrees of freedom added by this fix
|
|
|
|
------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
int FixBoxRelax::min_dof()
|
|
|
|
{
|
|
|
|
if (press_couple == XYZ) return 1;
|
2009-02-28 05:24:57 +08:00
|
|
|
else if (press_couple == XY) return (1 + p_flag[2]);
|
|
|
|
else if (press_couple == YZ) return (1 + p_flag[0]);
|
|
|
|
else if (press_couple == XZ) return (1 + p_flag[1]);
|
|
|
|
else if (press_couple == ANISO) return (p_flag[0] + p_flag[1] + p_flag[2]);
|
|
|
|
return 0;
|
2009-02-28 05:23:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------
|
|
|
|
dilate the box and owned/ghost atoms around center of box
|
|
|
|
------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
void FixBoxRelax::remap()
|
|
|
|
{
|
|
|
|
int i,n;
|
|
|
|
double ctr;
|
|
|
|
|
|
|
|
// ctr = geometric center of box in a dimension
|
|
|
|
// rescale simulation box from linesearch starting point
|
|
|
|
// scale atom coords for all atoms or only for fix group atoms
|
|
|
|
|
|
|
|
double **x = atom->x;
|
|
|
|
int *mask = atom->mask;
|
|
|
|
n = atom->nlocal + atom->nghost;
|
|
|
|
|
|
|
|
// convert pertinent atoms and rigid bodies to lamda coords
|
|
|
|
|
|
|
|
if (allremap) domain->x2lamda(n);
|
|
|
|
else {
|
|
|
|
for (i = 0; i < n; i++)
|
|
|
|
if (mask[i] & groupbit)
|
|
|
|
domain->x2lamda(x[i],x[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nrigid)
|
|
|
|
for (i = 0; i < nrigid; i++)
|
|
|
|
modify->fix[rfix[i]]->deform(0);
|
|
|
|
|
|
|
|
// reset global and local box to new size/shape
|
|
|
|
|
2009-02-28 05:24:57 +08:00
|
|
|
for (i = 0; i < 3; i++)
|
2009-02-28 05:23:41 +08:00
|
|
|
if (p_flag[i]) {
|
2009-02-28 05:24:57 +08:00
|
|
|
ctr = 0.5 * (boxlo0[i] + boxhi0[i]);
|
2009-02-28 05:23:41 +08:00
|
|
|
domain->boxlo[i] = boxlo0[i] + (boxlo0[i]-ctr)*ds[i]/s0[i];
|
|
|
|
domain->boxhi[i] = boxhi0[i] + (boxhi0[i]-ctr)*ds[i]/s0[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
domain->set_global_box();
|
|
|
|
domain->set_local_box();
|
|
|
|
|
|
|
|
// convert pertinent atoms and rigid bodies back to box coords
|
|
|
|
|
|
|
|
if (allremap) domain->lamda2x(n);
|
|
|
|
else {
|
|
|
|
for (i = 0; i < n; i++)
|
|
|
|
if (mask[i] & groupbit)
|
|
|
|
domain->lamda2x(x[i],x[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nrigid)
|
|
|
|
for (i = 0; i < nrigid; i++)
|
|
|
|
modify->fix[rfix[i]]->deform(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
void FixBoxRelax::couple()
|
|
|
|
{
|
|
|
|
double *tensor = pressure->vector;
|
|
|
|
|
|
|
|
if (press_couple == XYZ)
|
|
|
|
p_current[0] = p_current[1] = p_current[2] = pressure->scalar;
|
|
|
|
else if (press_couple == XY) {
|
|
|
|
double ave = 0.5 * (tensor[0] + tensor[1]);
|
|
|
|
p_current[0] = p_current[1] = ave;
|
|
|
|
p_current[2] = tensor[2];
|
|
|
|
} else if (press_couple == YZ) {
|
|
|
|
double ave = 0.5 * (tensor[1] + tensor[2]);
|
|
|
|
p_current[1] = p_current[2] = ave;
|
|
|
|
p_current[0] = tensor[0];
|
|
|
|
} else if (press_couple == XZ) {
|
|
|
|
double ave = 0.5 * (tensor[0] + tensor[2]);
|
|
|
|
p_current[0] = p_current[2] = ave;
|
|
|
|
p_current[1] = tensor[1];
|
|
|
|
} else if (press_couple == ANISO) {
|
|
|
|
p_current[0] = tensor[0];
|
|
|
|
p_current[1] = tensor[1];
|
|
|
|
p_current[2] = tensor[2];
|
|
|
|
}
|
|
|
|
}
|