Skip to content

Commit

Permalink
Squashed 'openseespy-docs/' changes from 79077af6..7b1f4908
Browse files Browse the repository at this point in the history
7b1f4908 Merge pull request #230 from sewkokot/updateOpsVis2
0905474d add support for the 'layer circ' option
d4f245d1 ops_vis: improve default options, add circ patch, fix 3d equal axis
5fbe6e11 add pressureConstraint command
5d043d64 Merge pull request #228 from kkolozvari/master
d1709b97 Update element.rst
2205e312 Merge pull request #227 from kkolozvari/master
f709a59f Update MVLEM_3D.rst
5da684cf Update MVLEM_3D.rst
5c564593 Update elasticBeamColumn.rst
929820e1 Add MVLEM_3D description
0761d8b9 Merge pull request #226 from mgrubisic/master
1921e0a3 Update HingeMidpoint.rst
c373190d Merge pull request #1 from zhuminjie/master
b5f8c8b9 Merge pull request #225 from harshmistry96/harshmistry96-patch-1
4c6e55bf Merge branch 'master' into harshmistry96-patch-1
5a686328 Updated freeFieldEffective.rst
09988758 Input motion file
1d02288c Update newmark.rst
290bdc8f Merge pull request #221 from harshmistry96/harshmistry96-patch-1
a72d8a2d Merge pull request #222 from harshmistry96/master
6e1934f7 Update geotech.rst
5d5edb2f Update geotech.rst
8e803327 Update geotech.rst
56ebeea8 Update geotech.rst
2886558a rst file for example freeFieldEffective.py
3db33855 Merge pull request #220 from jchatkinson/patch-1
50bd5985 Add files via upload
14afdb0d Update saveFiberData2D for grammar
1e913e45 Update sdfResponse.rst
b2ed21f9 update
f18a94c0 update
506a13b4 update
3b901474 update
7cd9923d update
772f8a6e update
7ab7e9af Merge branch 'master' of github.com:zhuminjie/OpenSeesPyDoc
aac97c0a update
1d67cc26 Update pathTs.rst
81049ea6 update
e96bd097 Merge branch 'master' of github.com:zhuminjie/OpenSeesPyDoc
f620da5f update
ed9af817 Update pathTs.rst
9c7ffee7 Update pathTs.rst
ad97800b update
009fe176 update
ea08a125 update
21aa6f2f update
9582b546 update
f165d479 update
d09e6c25 update
deac97a1 update
2fb9d546 Merge branch 'master' of github.com:zhuminjie/OpenSeesPyDoc
3ed329b4 shortcuts
f4742f7c Update FluidSolidPorousMaterial.rst
7354d55f add module
e2faa0cc update utility
3d258704 other cmds
be766c22 fix some errors
da969e59 nodeSize
cd3070d3 version 3.2.2.9

git-subtree-dir: openseespy-docs
git-subtree-split: 7b1f49089da7b421954e6e3289f8e48a50a26f3f
  • Loading branch information
zhuminjie committed May 25, 2021
1 parent 1deaba4 commit c06b062
Show file tree
Hide file tree
Showing 53 changed files with 9,482 additions and 142 deletions.
Binary file added _static/addmodule.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/fibsec_circ.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/initialRunOne.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/moduleclose.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/moduledelete.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/moduledown.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/moduleopen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/moduleup.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/resetCamera.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/runOne.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/viewicons.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@
# built documents.
#
# The short X.Y version.
version = '3.2.2.8'
version = '3.2.2.9'
# The full version, including alpha/beta/rc tags.
release = '3.2.2.8'
release = '3.2.2.9'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
21 changes: 21 additions & 0 deletions pyExamples/demo_plot_fiber_section.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,25 @@
plt.axis('equal')
# plt.savefig('fibsec_rc.png')

# circular cross-section
nc1, nr1 = 8, 3
nc2, nr2 = 8, 2
ri1, re1 = 0.1, 0.2
ri2, re2 = 0.2, 0.25
a_beg, a_end = 0., 360.
rbar3 = 0.225
a_beg2, a_end2 = 0., 360.

fib_sec_3 = [['section', 'Fiber', 1, '-GJ', 1.0e6],
['patch', 'circ', 2, nc1, nr1, 0., 0., ri1, re1, a_beg, a_end],
['patch', 'circ', 3, nc2, nr2, 0., 0., ri2, re2, a_beg, a_end],
['layer', 'circ', 4, 6, As9, 0., 0., rbar3, a_beg2, a_end2],
]


matcolor = ['r', 'lightgrey', 'gold', 'w', 'w', 'w']
opsv.plot_fiber_section(fib_sec_3, matcolor=matcolor)
plt.axis('equal')
# plt.savefig('fibsec_circ.png')

plt.show()
Loading

0 comments on commit c06b062

Please sign in to comment.