Skip to content

Commit

Permalink
fix broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
PetrKryslUCSD committed May 27, 2024
1 parent 353477a commit 84bdbff
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/test_shell_resultants.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ module mcompostat0

using LinearAlgebra
using FinEtools
using FinEtools.AlgoBaseModule: solve_blocked!
using FinEtoolsDeforLinear
using FinEtoolsFlexStructures.FESetShellT3Module: FESetShellT3
using FinEtoolsFlexStructures.FESetShellQ4Module: FESetShellQ4
Expand Down Expand Up @@ -107,8 +108,7 @@ function test_homogeneous(visualize = true)
F = distribloads(lfemm, geom0, dchi, fi, 3)

# Solve
U = K \ F
scattersysvec!(dchi, U[:])
solve_blocked!(dchi, K, F)
result = dchi.values[nl, 3][1]
# @info "Solution: $(result), $(round(result/analyt_sol*100, digits = 4))%"

Expand Down Expand Up @@ -289,8 +289,7 @@ function test_composite(visualize = true)
F = distribloads(lfemm, geom0, dchi, fi, 3)

# Solve
U = K \ F
scattersysvec!(dchi, U[:])
solve_blocked!(dchi, K, F)
result = dchi.values[nl, 3][1]
# @info "Solution: $(result), $(round(result/analyt_sol*100, digits = 4))%"

Expand Down

2 comments on commit 84bdbff

@PetrKryslUCSD
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Error while trying to register: Version 3.0.1 already exists

Please sign in to comment.