-
Notifications
You must be signed in to change notification settings - Fork 2
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
9feab31
commit b8e9b6f
Showing
9 changed files
with
385 additions
and
424 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,17 +1,32 @@ | ||
# FinEtoolsFlexStructures Documentation | ||
|
||
|
||
The [tutorials](https://github.com/PetrKryslUCSD/FinEtoolsFlexStructuresTutorials.jl) are provided in the form of Julia scripts and Markdown files in a separate [package](https://github.com/PetrKryslUCSD/FinEtoolsFlexStructuresTutorials.jl). | ||
```@contents | ||
``` | ||
|
||
## Conceptual guide | ||
|
||
The construction of the toolkit is described: the composition of modules, the basic data structures, the methodology of computing quantities required in the finite element methodology, and more. | ||
|
||
```@contents | ||
Pages = [ | ||
"guide/guide.md", | ||
] | ||
Depth = 1 | ||
``` | ||
|
||
## Manual | ||
|
||
The description of the types and the functions, organized by module and/or other logical principle. | ||
|
||
```@contents | ||
Pages = [ | ||
"man/types.md", | ||
"man/functions.md", | ||
"man/man.md", | ||
] | ||
Depth = 2 | ||
``` | ||
|
||
## Index | ||
|
||
```@index | ||
``` |
This file was deleted.
Oops, something went wrong.
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,150 @@ | ||
# Manual | ||
|
||
|
||
```@meta | ||
CurrentModule = FinEtoolsFlexStructures | ||
``` | ||
|
||
|
||
## Composite Layup | ||
|
||
```@autodocs | ||
Modules = [FinEtoolsFlexStructures.CompositeLayupModule] | ||
Private = true | ||
Order = [:function, :type] | ||
``` | ||
|
||
## Cross Section | ||
|
||
```@autodocs | ||
Modules = [FinEtoolsFlexStructures.CrossSectionModule] | ||
Private = true | ||
Order = [:function, :type] | ||
``` | ||
|
||
## Meshing of Frame Members | ||
|
||
```@autodocs | ||
Modules = [FinEtoolsFlexStructures.MeshFrameMemberModule] | ||
Private = true | ||
Order = [:function, :type] | ||
``` | ||
|
||
## FE Set for two-node Beams | ||
|
||
```@autodocs | ||
Modules = [FinEtoolsFlexStructures.FESetL2BeamModule] | ||
Private = true | ||
Order = [:function, :type] | ||
``` | ||
|
||
## FE Set for Shell T3 shapes | ||
|
||
```@autodocs | ||
Modules = [FinEtoolsFlexStructures.FESetShellT3Module] | ||
Private = true | ||
Order = [:function, :type, :constant] | ||
``` | ||
|
||
## FEMM for Corotational Beams | ||
|
||
```@autodocs | ||
Modules = [FinEtoolsFlexStructures.FEMMCorotBeamModule] | ||
Private = true | ||
Order = [:function, :type, :constant] | ||
``` | ||
|
||
## FEMM for linear beams with eccentric connections | ||
|
||
```@autodocs | ||
Modules = [FinEtoolsFlexStructures.FEMMLinBeamModule] | ||
Private = true | ||
Order = [:function, :type, :constant] | ||
``` | ||
|
||
## FEMM for reduced-integration Timoshenko beams | ||
|
||
```@autodocs | ||
Modules = [FinEtoolsFlexStructures.FEMMRITBeamModule] | ||
Private = true | ||
Order = [:function, :type, :constant] | ||
``` | ||
|
||
## FEMM for Shell T3FF with homogeneous composition | ||
|
||
```@autodocs | ||
Modules = [FinEtoolsFlexStructures.FEMMShellT3FFModule] | ||
Private = true | ||
Order = [:function, :type, :constant] | ||
``` | ||
|
||
## FEMM for Shell T3FF with layered composition | ||
|
||
```@autodocs | ||
Modules = [FinEtoolsFlexStructures.FEMMShellT3FFCompModule] | ||
Private = true | ||
Order = [:function, :type, :constant] | ||
``` | ||
|
||
## FEMM for point masses | ||
|
||
```@autodocs | ||
Modules = [FinEtoolsFlexStructures.FEMMPointMassModule] | ||
Private = true | ||
Order = [:function, :type] | ||
``` | ||
|
||
## FEMM for Grounded springs | ||
|
||
```@autodocs | ||
Modules = [FinEtoolsFlexStructures.FEMMPointGroundedSpringModule] | ||
Private = true | ||
Order = [:function, :type] | ||
``` | ||
|
||
## Rotation utilities | ||
|
||
```@autodocs | ||
Modules = [FinEtoolsFlexStructures.RotUtilModule] | ||
Private = true | ||
Order = [:function, :type] | ||
``` | ||
|
||
## Transformer functions | ||
|
||
```@autodocs | ||
Modules = [FinEtoolsFlexStructures.TransformerModule] | ||
Private = true | ||
Order = [:function, :type] | ||
``` | ||
|
||
## Assembly of special matrices | ||
|
||
```@autodocs | ||
Modules = [FinEtoolsFlexStructures.AssemblyModule] | ||
Private = true | ||
Order = [:function, :type] | ||
``` | ||
|
||
## Modules | ||
|
||
```@docs | ||
FinEtoolsFlexStructures.FinEtoolsFlexStructures | ||
FinEtoolsFlexStructures.CompositeLayupModule | ||
FinEtoolsFlexStructures.CrossSectionModule | ||
FinEtoolsFlexStructures.MeshFrameMemberModule | ||
FinEtoolsFlexStructures.FESetL2BeamModule | ||
FinEtoolsFlexStructures.FESetShellT3Module | ||
FinEtoolsFlexStructures.FESetShellQ4Module | ||
FinEtoolsFlexStructures.FEMMCorotBeamModule | ||
FinEtoolsFlexStructures.FEMMLinBeamModule | ||
FinEtoolsFlexStructures.FEMMRITBeamModule | ||
FinEtoolsFlexStructures.FEMMShellT3FFModule | ||
FinEtoolsFlexStructures.FEMMShellT3FFCompModule | ||
FinEtoolsFlexStructures.FEMMPointMassModule | ||
FinEtoolsFlexStructures.FEMMPointGroundedSpringModule | ||
FinEtoolsFlexStructures.RotUtilModule | ||
FinEtoolsFlexStructures.TransformerModule | ||
FinEtoolsFlexStructures.AssemblyModule | ||
``` | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
b8e9b6f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
b8e9b6f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/101640
Tip: Release Notes
Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.
To add them here just re-invoke and the PR will be updated.
Tagging
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: