Skip to content

Commit

Permalink
simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
albert-de-montserrat committed Oct 19, 2024
1 parent 4476aca commit 97c4216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CreepLaw/CreepLaw.jl
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ end
function dεII_dτII(a::PowerlawViscous, TauII; kwargs...)
@unpack_val η0, n, ε0 = a

Check warning on line 325 in src/CreepLaw/CreepLaw.jl

View check run for this annotation

Codecov / codecov/patch

src/CreepLaw/CreepLaw.jl#L324-L325

Added lines #L324 - L325 were not covered by tests

return @pow ((TauII^((1 - n) / n))*(1^(1 / n))) / (n*(η0^(1 / n)))
return @pow (TauII^((1 - n) / n)) / (n*(η0^(1 / n)))

Check warning on line 327 in src/CreepLaw/CreepLaw.jl

View check run for this annotation

Codecov / codecov/patch

src/CreepLaw/CreepLaw.jl#L327

Added line #L327 was not covered by tests
end

"""
Expand Down

0 comments on commit 97c4216

Please sign in to comment.