Itasca C++ Interface
convert.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "conmodelbase.h"
4 
12 namespace models {
14  CONMODEL_EXPORT void getYPfromBS(const double &bulk,const double &shear,double *young,double *poisson);
16  CONMODEL_EXPORT void getBSfromYP(const double &young,const double &poisson,double *bulk,double *shear);
17 } // namespace models
18 
20 // EoF
The Constitutive Model interface library.
Definition: conmodel.cpp:7
void getBSfromYP(const double &young, const double &poisson, double *bulk, double *shear)
Converts Young's Modulus and Poisson's Ratio to Bulk and Shear Modulus.
Definition: convert.cpp:19
void getYPfromBS(const double &bulk, const double &shear, double *young, double *poisson)
Converts Bulk and Shear Modulus to Young's Modulus and Poisson's Ratio.
Definition: convert.cpp:5