-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Towards AD rheology calculations #68
base: main
Are you sure you want to change the base?
Conversation
this is great - I attempted using AD to do more complicated Composite & Parallel rheologies, which was failing. Perhaps this can do the job? |
I got the composites with n- |
That's great! |
When non-linear iterations are required to during the local iterations to compute stress/strain we do require to evaluate
εII
and∂εII∂τII
(or same for the stress tensor). Currently we do compute the tensor and its derivative in two separate operations, while with AD we can evaluate the functions and its derivative with a single function call. The latter yields a more efficient algorithm with no loss of accuracy. Proof of concept: