ATC version 2.0, date: Aug21
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@10638 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -3,10 +3,6 @@
|
||||
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
||||
using std::map;
|
||||
using std::string;
|
||||
|
||||
#include "ATC_TypeDefs.h"
|
||||
#include "Function.h"
|
||||
|
||||
@ -33,7 +29,7 @@ namespace ATC {
|
||||
class BodyForceViscous : public BodyForce
|
||||
{
|
||||
public:
|
||||
BodyForceViscous(fstream &matfile,map<string,double> & parameters);
|
||||
BodyForceViscous(std::fstream &matfile,std::map<std::string,double> & parameters);
|
||||
virtual ~BodyForceViscous() {};
|
||||
virtual bool body_force(const FIELD_MATS &fields,
|
||||
DENS_MAT &flux) const
|
||||
@ -53,7 +49,7 @@ namespace ATC {
|
||||
class BodyForceElectricField : public BodyForce
|
||||
{
|
||||
public:
|
||||
BodyForceElectricField(fstream &matfile,map<string,double> & parameters)
|
||||
BodyForceElectricField(std::fstream &matfile,std::map<std::string,double> & parameters)
|
||||
{ throw ATC_Error("unimplemented due to issues with accessing electric field"); }
|
||||
virtual ~BodyForceElectricField() {};
|
||||
virtual bool body_force(const FIELD_MATS &fields,
|
||||
|
||||
Reference in New Issue
Block a user