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

Replace static analysis to linear in cantilever.jl #500

Open
mvanzulli opened this issue Jun 30, 2024 · 1 comment
Open

Replace static analysis to linear in cantilever.jl #500

mvanzulli opened this issue Jun 30, 2024 · 1 comment
Labels
good first issue Good for newcomers static analysis Static analysis issues

Comments

@mvanzulli
Copy link
Member

The example is linear, so there is no need to run a non-linear analysis.

@mvanzulli mvanzulli added good first issue Good for newcomers static analysis Static analysis issues labels Jun 30, 2024
@mvanzulli
Copy link
Member Author

Sth like this:

"Return the problem solution"
function solve()
    s = structure()
    # -------------------------------
    # Structural Analysis
    # -------------------------------
    (; NSTEPS) = parameters()
    sa = LinearStaticAnalysis(s; NSTEPS)
    # -------------------------------
    # Numerical solution
    # -------------------------------
    sol = solve!(sa)
end;

should be enough ⭕

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers static analysis Static analysis issues
Projects
None yet
Development

No branches or pull requests

1 participant