--
You received this message because you are subscribed to the Google Groups "moose-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to moose-users...@googlegroups.com.
Visit this group at https://groups.google.com/group/moose-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/moose-users/536db9d9-d6d0-417c-9605-5ce0471d1701%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
*** ERROR ***
Constitutive failure with substepping at quadrature point 0.211325 0.211325 0.211325
****************************
Thank you so much if you can take a look at it , see if I am on the right track:)
Thank you,
Rao
--
You received this message because you are subscribed to the Google Groups "moose-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to moose-users...@googlegroups.com.
Visit this group at https://groups.google.com/group/moose-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/moose-users/5b8bbedd-bca6-4723-8004-33d70ce0c7d5%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/moose-users/b63f2f9b-40ba-43b1-b571-fdc86e03bd65%40googlegroups.com.
if (eqv_stress>_strength[qp])
val = 1.0/_t_tau*std::exp(-1.0/_chi)*std::exp(eqv_stress/_grain_pressure/_chi)*(1.0 - _strength[qp]/eqv_stress);
else
val = 0.0;
if (eqv_stress > _strength[qp])
dflowrate_dseqv = 1.0/_t_tau * std::exp(-1.0/_chi) * std::exp(eqv_stress/_grain_pressure/_chi) * \
(1.0/(_grain_pressure * _chi) * (1 - _strength[qp]/eqv_stress) \
+ _strength[qp]/(eqv_stress*eqv_stress));
To view this discussion on the web visit https://groups.google.com/d/msgid/moose-users/b63f2f9b-40ba-43b1-b571-fdc86e03bd65%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/moose-users/f5dddb91-4db4-4b36-a0dc-dfedf20966e9%40googlegroups.com.
MOOSE Compiling C++ (in opt mode) /Users/max/projects/stz/src/material/stzExampleMaterial.C...
In file included from /Users/max/projects/stz/src/material/stzExampleMaterial.C:15:
/Users/max/projects/stz/include/material/stzExampleMaterial.h:42:26: error: use of undeclared identifier 'RankTwoTensor'
const MaterialProperty<RankTwoTensor> & _fp;
^
/Users/max/projects/stz/src/material/stzExampleMaterial.C:35:29: error: use of undeclared identifier 'RankTwoTensor'
_fp(getMaterialProperty<RankTwoTensor>(_base_name + "fp"))
^
2 errors generated.
make: *** [/Users/max/projects/stz/src/material/stzExampleMaterial.x86_64-apple-darwin15.4.0.opt.lo] Error 1
**********************************
I am attaching the source file and the header file.
Thank you,
April