You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: simcoon-python-builder/src/python_wrappers/boostpython_smartplus_wrappers.cpp
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -94,6 +94,8 @@ PYBIND11_MODULE(simmit, m) {
94
94
m.def("dHill_stress", &dHill_stress, "input"_a, "props"_a, "copy"_a=true, "This function returns the derivative of the Hill equivalent stress");
95
95
m.def("Ani_stress", &Ani_stress, "input"_a, "props"_a, "This function returns the Ani equivalent stress");
96
96
m.def("dAni_stress", &dAni_stress, "input"_a, "props"_a, "copy"_a=true, "This function returns the derivative of the Ani equivalent stress");
97
+
m.def("DFA_stress", &DFA_stress, "input"_a, "props"_a, "This function returns the DFA equivalent stress");
98
+
m.def("dDFA_stress", &dDFA_stress, "input"_a, "props"_a, "copy"_a=true, "This function returns the derivative of the DFA equivalent stress");
97
99
m.def("Eq_stress", &Eq_stress, "input"_a, "criteria"_a, "props"_a, "This function computes the selected equivalent stress function");
98
100
m.def("dEq_stress", &dEq_stress, "input"_a, "criteria"_a, "props"_a, "copy"_a=true, "This function computes the deriavtive of the selected equivalent stress function");
0 commit comments