// -*- C++ -*-
// $RCSfile: zimmermaterial.C,v $
// $Revision: 1.10 $
// $Author: langer $
// $Date: 2005/02/17 19:11:31 $
/* This software was produced by NIST, an agency of the U.S. government,
* and by statute is not subject to copyright in the United States.
* Recipients of this software assume all responsibilities associated
* with its operation, modification and maintenance. However, to
* facilitate maintenance we ask that before distributing modifed
* versions of this software, you first contact the authors at
* oof_manager@ctcms.nist.gov.
*/
// Andrez Zimmermann's Griffith element with Hexagonal symmetry,
// based on GTElement with energy release criterion
#include "materialcmd.h"
#include "zimmermaterial.h"
#include "readbinary.h"
CharString ZimmerMaterial::type("zimmer");
MaterialTypeRegistration ZimmerMaterial::reg("zimmer",
new MaterialCmd<ZimmerMaterial>,
new MaterialTriCmd<ZimmerMaterial>,
8.0);
CharString ZimmerMaterial2::type("zimmer2");
MaterialTypeRegistration ZimmerMaterial2::reg("zimmer2",
new MaterialCmd<ZimmerMaterial2>,
new MaterialTriCmd<ZimmerMaterial2>,
8.1);
float ZimmerMaterial::c11_dflt(1.0);
float ZimmerMaterial::c12_dflt(0.0);
float ZimmerMaterial::c13_dflt(0.0);
float ZimmerMaterial::c33_dflt(1.0);
float ZimmerMaterial::c44_dflt(0.5);
float ZimmerMaterial::alpha11_dflt(1.0);
float ZimmerMaterial::alpha33_dflt(1.0);
#ifdef THERMAL
float ZimmerMaterial::kappa11_dflt(1.0);
float ZimmerMaterial::kappa33_dflt(1.0);
#endif // THERMAL
float ZimmerMaterial::knockdown1_dflt(0.1);
float ZimmerMaterial::knockdown2_dflt(0.2);
float ZimmerMaterial::gamma_dflt(0.1);
EulerAngle ZimmerMaterial::orientation_dflt;
TrueFalse ZimmerMaterial::onlyonce_dflt;
void ZimmerMaterial::output(FILE* fp_goof, unsigned char &flag,
int n1, int n2, int n3) const
{
MaterialT::output(fp_goof, flag, n1, n2, n3);
writebinary(fp_goof, float(orientation.alpha()));
writebinary(fp_goof, float(orientation.beta()));
writebinary(fp_goof, float(orientation.gamma()));
writebinary(fp_goof, flag);
writebinary(fp_goof, c11);
writebinary(fp_goof, c12);
writebinary(fp_goof, c13);
writebinary(fp_goof, c33);
writebinary(fp_goof, c44);
writebinary(fp_goof, alpha11);
writebinary(fp_goof, alpha33);
#ifdef THERMAL
writebinary(fp_goof, kappa11);
writebinary(fp_goof, kappa33);
#endif // THERMAL
writebinary(fp_goof, gamma);
writebinary(fp_goof, knockdown1);
writebinary(fp_goof, knockdown2);
writebinary(fp_goof, onlyonce?1:0);
}
void ZimmerMaterial::output(FILE* fp_goof, unsigned char &flag,
int n1, int n2, int n3,
int same_element) const
{
MaterialT::output(fp_goof, flag, n1, n2, n3, same_element);
writebinary(fp_goof, float(orientation.alpha()));
writebinary(fp_goof, float(orientation.beta()));
writebinary(fp_goof, float(orientation.gamma()));
writebinary(fp_goof, flag);
writebinary(fp_goof, same_element);
writebinary(fp_goof, c11);
writebinary(fp_goof, c12);
writebinary(fp_goof, c13);
writebinary(fp_goof, c33);
writebinary(fp_goof, c44);
writebinary(fp_goof, alpha11);
writebinary(fp_goof, alpha33);
#ifdef THERMAL
writebinary(fp_goof, kappa11);
writebinary(fp_goof, kappa33);
#endif // THERMAL
writebinary(fp_goof, gamma);
writebinary(fp_goof, knockdown1);
writebinary(fp_goof, knockdown2);
writebinary(fp_goof, onlyonce?1:0);
}
int ZimmerMaterial::compare(const Material *other) const {
if(!MaterialT::compare(other)) return 0;
ZimmerMaterial *m2 = (ZimmerMaterial*) other;
if(c11 != m2->c11) return 0;
if(c12 != m2->c12) return 0;
if(c13 != m2->c13) return 0;
if(c33 != m2->c33) return 0;
if(c44 != m2->c44) return 0;
if(alpha11 != m2->alpha11) return 0;
if(alpha33 != m2->alpha33) return 0;
#ifdef THERMAL
if(kappa11 != m2->kappa11) return 0;
if(kappa33 != m2->kappa33) return 0;
#endif // THERMAL
if(gamma != m2->gamma) return 0;
if(knockdown1 != m2->knockdown1) return 0;
if(knockdown2 != m2->knockdown2) return 0;
if(onlyonce != m2->onlyonce) return 0;
if(!(orientation == m2->orientation)) return 0;
return 1;
}
// -----------
std::vector<CharString> *ZimmerMaterial::print_properties(ostream &os) const {
// Treated as hexagonal
std::vector<CharString> *names = MaterialT::print_properties(os);
CharString pname = newPropertyName();
os << "OOF.LoadData.Property.Elasticity.Anisotropic.Hexagonal(name='" << pname
<< "', cijkl=HexagonalRank4TensorCij(c11=" << c11
<< ", c12=" << c12
<< ", c13=" << c13
<< ", c33=" << c33
<< ", c44=" << c44 << "))" << endl;
names->push_back("Elasticity:Anisotropic:Hexagonal:" + pname);
pname = newPropertyName();
os << "OOF.LoadData.Property.Orientation(name='" << pname
<< "', angles=Abg(alpha=" << orientation.alpha()
<< ", beta=" << orientation.beta()
<< ", gamma=" << orientation.gamma() << "))" << endl;
names->push_back("Orientation:" + pname);
if(alpha11 != 0.0 || alpha33 != 0.0) {
pname = newPropertyName();
os << "OOF.LoadData.Property.Thermal.ThermalExpansion.Anisotropic.Hexagonal(name='"
<< pname
<< "', alpha=HexagonalRank2Tensor(xx=" << c11
<< ", zz=" << 33 << "), T0="
#ifndef THERMAL
<< "0.0"
#else // THERMAL
<< t0
#endif // THERMAL
<< ")" << endl;
names->push_back("Thermal:ThermalExpansion:Anisotropic:Hexagonal:" + pname);
}
#ifdef THERMAL
if(kappa11 != 0.0 || kappa33 != 0.0) {
pname = newPropertyName();
os << "OOF.LoadData.Property.Thermal.Conductivity.Anisotropic.Hexagonal(name='" << pname
<< "', kappa=HexagonalRank2Tensor(xx=" << kappa11
<< ", zz=" << kappa33 << "))" << endl;
names->push_back("Thermal:Conductivity:Anisotropic:Hexagonal:" + pname);
}
#endif // THERMAL
return names;
}
syntax highlighted by Code2HTML, v. 0.9.1