-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ab37a9e
commit 2c57320
Showing
4 changed files
with
93 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# API | ||
|
||
## Types Used to Define a Model | ||
|
||
```@docs | ||
Model | ||
Node | ||
Material | ||
Section | ||
Element | ||
``` | ||
|
||
## Types Used to Perform Analyses of Different Types and Store the Results | ||
|
||
```@docs | ||
LinearElasticAnalysis | ||
LinearElasticAnalysisCache | ||
ElasticBucklingAnalysis | ||
ElasticBucklingAnalysisCache | ||
FreeVibrationAnalysis | ||
FreeVibrationAnalysisCache | ||
``` | ||
|
||
## Functions Used to Define a Model | ||
|
||
```@docs | ||
node! | ||
section! | ||
material! | ||
element! | ||
concload! | ||
distload! | ||
``` | ||
|
||
## Functions Used to Perform Analyses of Different Types and Extract the Results | ||
|
||
```@docs | ||
solve | ||
getnodedisp | ||
getelementdisp_l | ||
getelementdisp_g | ||
getelementforces_l | ||
getelementforces_g | ||
``` | ||
|
||
## Functions Used to Plot a Model and the Results of Analyses of Different Types | ||
|
||
```@docs | ||
plotmodel | ||
plotmodel! | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,13 @@ | ||
function plotmodel end | ||
""" | ||
plotmodel(model::Model, [options]) | ||
Plots a model of a structure of interest ([`Model`](@ref)) into a new `Makie.jl` scene. | ||
""" | ||
function plotmodel end | ||
|
||
""" | ||
plotmodel!(scene::Scene, model::Model, [options]) | ||
Plots a model of a structure of interest ([`Model`](@ref)) into an existing `Makie.jl` scene. | ||
""" | ||
function plotmodel! end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters