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