forked from lijiext/lammps
157 lines
4.9 KiB
C
157 lines
4.9 KiB
C
|
#ifndef ATC_COUPLING_MOMENTUM_ENERGY_H
|
||
|
#define ATC_COUPLING_MOMENTUM_ENERGY_H
|
||
|
|
||
|
// ATC headers
|
||
|
#include "ATC_Coupling.h"
|
||
|
#include "Kinetostat.h"
|
||
|
#include "Thermostat.h"
|
||
|
#include "ElasticTimeIntegrator.h"
|
||
|
#include "ThermalTimeIntegrator.h"
|
||
|
|
||
|
// Other headers
|
||
|
#include <map>
|
||
|
|
||
|
namespace ATC {
|
||
|
|
||
|
class AtfShapeFunctionRestriction;
|
||
|
class AtfShapeFunctionMdProjection;
|
||
|
|
||
|
/**
|
||
|
* @class ATC_CouplingMomentumEnergy
|
||
|
* @brief A class for atom-continuum transfers & control involving momentum and heat transport
|
||
|
* (owned field/s: DISPLACEMENT, VELOCITY, TEMPERATURE)
|
||
|
*/
|
||
|
|
||
|
class ATC_CouplingMomentumEnergy : public ATC_Coupling {
|
||
|
|
||
|
public:
|
||
|
|
||
|
// constructor
|
||
|
ATC_CouplingMomentumEnergy(std::string groupName,
|
||
|
double ** & perAtomArray,
|
||
|
LAMMPS_NS::Fix * thisFix,
|
||
|
std::string matParamFile,
|
||
|
ExtrinsicModelType extrinsic = NO_MODEL);
|
||
|
|
||
|
// destructor
|
||
|
virtual ~ATC_CouplingMomentumEnergy();
|
||
|
|
||
|
/** parser/modifier */
|
||
|
virtual bool modify(int narg, char **arg);
|
||
|
|
||
|
/** pre time integration */
|
||
|
virtual void initialize();
|
||
|
|
||
|
/** flags whether a methods reset is required */
|
||
|
|
||
|
virtual bool reset_methods() const {
|
||
|
bool resetMethods = ATC_Method::reset_methods() || atomicRegulator_->need_reset();
|
||
|
for (_ctiIt_ = timeIntegrators_.begin(); _ctiIt_ != timeIntegrators_.end(); ++_ctiIt_) {
|
||
|
resetMethods |= (_ctiIt_->second)->need_reset();
|
||
|
}
|
||
|
return resetMethods;
|
||
|
};
|
||
|
|
||
|
/** post time integration */
|
||
|
virtual void finish();
|
||
|
|
||
|
/** first time, before atomic integration */
|
||
|
virtual void pre_init_integrate();
|
||
|
/** first time, after atomic velocity but before position integration */
|
||
|
virtual void mid_init_integrate();
|
||
|
/** first time, after atomic integration */
|
||
|
virtual void post_init_integrate();
|
||
|
|
||
|
/** second time, before atomic integration */
|
||
|
virtual void pre_final_integrate();
|
||
|
/** second time, after atomic integration */
|
||
|
virtual void post_final_integrate();
|
||
|
|
||
|
/** compute scalar for output - added energy */
|
||
|
virtual double compute_scalar(void);
|
||
|
|
||
|
/** compute vector for output */
|
||
|
virtual double compute_vector(int n);
|
||
|
double kinetic_energy();
|
||
|
double potential_energy();
|
||
|
|
||
|
/** output */
|
||
|
virtual void output();
|
||
|
|
||
|
|
||
|
/** set up atom to material identification */
|
||
|
virtual void reset_atom_materials();
|
||
|
|
||
|
protected:
|
||
|
|
||
|
//---------------------------------------------------------------
|
||
|
/** initialization routines */
|
||
|
//---------------------------------------------------------------
|
||
|
/** constructs all data which is updated with time integration, i.e. fields */
|
||
|
//virtual void construct_time_integration_data();
|
||
|
/** create methods, e.g. time integrators, filters */
|
||
|
virtual void construct_methods();
|
||
|
/** set up data which is dependency managed */
|
||
|
virtual void construct_transfers();
|
||
|
|
||
|
/** sets the position/velocity of the ghost atoms */
|
||
|
virtual void set_ghost_atoms();
|
||
|
/** analagous to FixATC initial_integrate applied to ghosts */
|
||
|
void initial_integrate_ghost();
|
||
|
/** analagous to FixATC final_integrate applied to ghosts */
|
||
|
void final_integrate_ghost();
|
||
|
/** forces on dynamic ghosts */
|
||
|
void add_ghost_forces();
|
||
|
void apply_ghost_forces();
|
||
|
|
||
|
/** adds resetting of any kinetostat/thermostat arrays associated with local atom count */
|
||
|
virtual void reset_nlocal();
|
||
|
|
||
|
/** compute the mass matrix components coming from MD integration */
|
||
|
virtual void compute_md_mass_matrix(FieldName thisField,
|
||
|
DIAG_MAT & massMats);
|
||
|
|
||
|
/** operator to compute the mass matrix for the momentum equation from MD integration */
|
||
|
AtfShapeFunctionRestriction * nodalAtomicMass_;
|
||
|
|
||
|
/** operator to compute the dimensionless mass matrix from MD integration */
|
||
|
AtfShapeFunctionRestriction * nodalAtomicCount_;
|
||
|
|
||
|
/** operator to compute mass matrix from MD */
|
||
|
AtfShapeFunctionRestriction * nodalAtomicHeatCapacity_;
|
||
|
|
||
|
/** physics specific filter initialization */
|
||
|
void init_filter();
|
||
|
|
||
|
/** field mask for velocity integration */
|
||
|
Array2D<bool> velocityMask_;
|
||
|
|
||
|
/** field mask for temperature integration */
|
||
|
Array2D<bool> temperatureMask_;
|
||
|
|
||
|
/** kinetic temperature for post-processing */
|
||
|
AtfShapeFunctionMdProjection * nodalAtomicKineticTemperature_;
|
||
|
|
||
|
/** configurational temperature for post-processing */
|
||
|
AtfShapeFunctionMdProjection * nodalAtomicConfigurationalTemperature_;
|
||
|
|
||
|
/** workspace matrices for output */
|
||
|
DENS_MAT _keTemp_, _peTemp_;
|
||
|
|
||
|
// Add in fields for restarting
|
||
|
virtual void read_restart_data(string fileName_, RESTART_LIST & data);
|
||
|
virtual void write_restart_data(string fileName_, RESTART_LIST & data);
|
||
|
void pack_quantity_fields(RESTART_LIST & data);
|
||
|
|
||
|
|
||
|
// boundary dynamics
|
||
|
BoundaryDynamicsType boundaryDynamics_;
|
||
|
double gamma_, mu_, kappa_;
|
||
|
|
||
|
// data
|
||
|
double refPE_;
|
||
|
};
|
||
|
|
||
|
};
|
||
|
#endif
|