Removing untested feature to fix bug affecting Windows builds

git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@11655 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
jzimmer
2014-03-19 21:55:08 +00:00
parent 1f6484a29a
commit 68c5f66685
2 changed files with 0 additions and 27 deletions

View File

@ -359,19 +359,12 @@ namespace ATC {
// -------------------------------------------------------------
void FE_Mesh::initialize(void)
{
bool aligned = is_aligned();
if (!aligned) {
feElement_->set_projection_guess(CENTROID_LINEARIZED);
ATC::LammpsInterface::instance()->print_msg_once("WARNING: mesh is not aligned with the coordinate directions atom-to-element mapping will be expensive");
// if HEX8 -> orient();
}
bool twoD = is_two_dimensional();
if (twoD) {
feElement_->set_projection_guess(TWOD_ANALYTIC);
if (feElement_->order()< 3) hasPlanarFaces_ = true;
ATC::LammpsInterface::instance()->print_msg_once(" mesh is two dimensional");
}
}
//-----------------------------------------------------------------