By Alex Quinlan, Henry Jacobson, Pia Callmer and Nicola Sabbadini
Run the dynamic case from the root of the directory with
julia --project=. src/single_dynamic.jljulia --project=. src/framework_dynamic.jlRun the static code with
julia --project=. src/single_static.jljulia --project=. src/dynamic_static.jlYou can also run the code from the REPL. Add the NumericalAnalysis package by add https://github.com/alexQueue/NumericalAnalysis using the package manager, then
you can with using NumericalAnalysis use the modules Beam1D and Beam2D directly.
Tests are run in Github Actions but are non-blocking. You can run tests locally with
julia --project=. test/runtests.jlSee: https://pkgdocs.julialang.org/v1/environments/
Add packages by:
- Entering the Julia REPL.
- Then enter package management mode with
]. - Activate the local project with
activate .. - Finally, add the package with
add <package-name>.
Add all necessary packages for development:
- Do first three steps as above.
- Add required packages with
instantiate.
