Skip to content
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

Fix CI on 1.10 #113

Merged
merged 2 commits into from
Sep 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions src/CreepLaw/DislocationCreep.jl
Original file line number Diff line number Diff line change
Expand Up @@ -313,9 +313,6 @@ end
FT, FE = a.FT, a.FE
_n = inv(n)

A_n = pow_check(A, -_n)
f_r = pow_check(f, -r * _n)
EpsII_FE_n = pow_check(EpsII * FE, _n - 1)

return @pow (
FE * A^-_n * f^(-r * _n) * (EpsII * FE)^(_n - 1) * exp((E + P * V) / (R * T * n))
Expand Down
2 changes: 1 addition & 1 deletion src/GeoParams.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This package has two main features that help with this:
The material parameter object is designed to be extensible and can be passed on to the solvers, such that new creep laws or features can be readily added.
We also implement some typically used creep law parameters, together with tools to plot them versus and compare our results with those of published papers (to minimize mistakes).
"""
__precompile__()
# __precompile__()
module GeoParams

using Parameters # helps setting default parameters in structures
Expand Down