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

minor bug fixes #106

Merged
merged 5 commits into from
Mar 29, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Merge branch 'master' of https://github.com/byuflowlab/GXBeam.jl into…
… optimization
  • Loading branch information
taylormcd committed Mar 29, 2023
commit f4417469914f7c3c6a0a237274b48d021b0d6d26
5 changes: 3 additions & 2 deletions src/output.jl
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,9 @@ end
Base.convert(::Type{AssemblyState{TF, TP, TE}}, a::AssemblyState) where {TF, TP, TE} = AssemblyState{TF, TP, TE}(a)

"""

AssemblyState(system, assembly, x=system.x, dx=system.dx; prescribed_conditions = Dict())
AssemblyState(system, assembly; prescribed_conditions = Dict())
AssemblyState(x, system, assembly; prescribed_conditions = Dict())
AssemblyState(dx, x, system, assembly; prescribed_conditions = Dict())

Post-process the system state given the state vector `x` and rate vector `dx`. Return an
object of type `AssemblyState` that defines the state of the assembly for the time step.
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.