updated project.toml for docs #44
Annotations
1 error and 9 warnings
Julia 1.9 - ubuntu-latest - x64 - push
The operation was canceled.
|
Documentation:
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
failed to run `@example` block in src/example.md:13-25
```@example
f = Figure()
ax = Makie.Axis(f[1,1])
treloar_data = Treloar1944Uniaxial()
scatter!(ax,
getindex.(treloar_data.data.λ, 1),
getindex.(treloar_data.data.s, 1),
label = "Treloar 1944 Experimental",
color = :black
)
axislegend(position = :lt)
f
```
value = UndefVarError: `Figure` not defined
|
Documentation:
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
failed to run `@example` block in src/example.md:29-34
```@example
ψ = NeoHookean()
λ⃗ = [2.0, sqrt(1/2), sqrt(1/2)]
p = (μ = 10.0, )
StrainEnergyDensity(ψ, λ⃗, p)
```
value = UndefVarError: `NeoHookean` not defined
|
Documentation:
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
failed to run `@example` block in src/example.md:38-42
```@example
F = rand(3,3)
p = (μ = 20.0, )
StrainEnergyDensity(ψ, F, p)
```
value = UndefVarError: `StrainEnergyDensity` not defined
|
Documentation:
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
failed to run `@example` block in src/example.md:46-49
```@example
prob = HyperelasticProblem(ψ, treloar_data, ComponentVector(μ = 0.2))
solve(prob, LBFGS())
```
value = UndefVarError: `ψ` not defined
|
Documentation:
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
failed to run `@example` block in src/example.md:53-69
```@example
models = Dict(
Gent => ComponentVector(μ=240e-3, Jₘ=80.0),
EdwardVilgis => ComponentVector(Ns=0.10, Nc=0.20, α=0.001, η=0.001),
ModifiedFloryErman => ComponentVector(μ=0.24, N=50.0, κ=10.0),
NeoHookean => ComponentVector(μ=200e-3),
NonaffineMicroSphere => ComponentVector(μ=0.292, N=22.5, p=1.471, U=0.744, q=0.1086),
Beda => ComponentVector(C1=0.1237, C2=0.0424, C3=7.84e-5, K1=0.0168, α=0.9, β=0.68, ζ=3.015)
)
sol = Dict{DataType, SciMLSolution}()
for (ψ, p₀) in models
HEProblem = HyperelasticProblem(ψ(), treloar_data, p₀)
sol[ψ] = solve(HEProblem, NelderMead())
@show ψ, sol[ψ].u
end
```
value = UndefVarError: `Gent` not defined
|
Documentation:
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
failed to run `@example` block in src/example.md:73-83
```@example
f = Figure()
ax = Makie.Axis(f[1,1])
for (ψ, p) in sol
pred = predict(ψ(), treloar_data, p.u)
lines!(ax, getindex.(pred.data.λ, 1), getindex.(pred.data.s, 1), label=string(ψ))
end
scatter!(ax, getindex.(treloar_data.data.λ, 1), getindex.(treloar_data.data.s, 1), label = "Treloar 1944 Experimental", color = :black)
axislegend(position = :lt)
f
```
value = UndefVarError: `Figure` not defined
|
Documentation:
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
failed to run `@example` block in src/example.md:87-114
```@example
using DataInterpolations
ψ = SussmanBathe(treloar_data, k=4, interpolant = QuadraticSpline)
λ₁ = range(extrema(getindex.(treloar_data.data.λ, 1))..., length = 100)
uniaxial_prediction = HyperelasticUniaxialTest(λ₁, name = "Prediction")
pred = predict(ψ, uniaxial_prediction, [])
λ₁ = getindex.(treloar_data.data.λ, 1)
s₁ = getindex.(treloar_data.data.s, 1)
λ̂₁ = getindex.(pred.data.λ, 1)
ŝ₁ = getindex.(pred.data.s, 1)
f, ax, p = lines(
λ̂₁,
ŝ₁,
label = "Sussman-Bathe Approximation"
)
scatter!(
ax,
λ₁,
s₁,
label = "Treloar 1944 Experimental",
color = :black
)
axislegend(position = :lt)
f
```
value =
ArgumentError: Package DataInterpolations not found in current path.
- Run `import Pkg; Pkg.add("DataInterpolations")` to install the DataInterpolations package.
|
Documentation:
../../../.julia/packages/DocumenterCitations/ZXtrs/src/bibliography.jl#L240
There were no citations
|
Documentation:
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
no footnotes found for '2' in src/API.md.
|