diff --git a/examples/chopra-10.4/index.html b/examples/chopra-10.4/index.html index 5f9350a7..073b9b97 100644 --- a/examples/chopra-10.4/index.html +++ b/examples/chopra-10.4/index.html @@ -386,13 +386,13 @@
python EigenAnal_twoStoryShearFrame8.py
python -m opensees EigenAnal_twoStoryShearFrame8.tcl
import opensees.openseespy as ops
@@ -484,7 +484,7 @@ Create the model
-
+
model BasicBuilder -ndm 2 -ndf 3
@@ -512,13 +512,13 @@ Create the model
Python
Tcl
@@ -534,7 +534,7 @@ Create the model
-
+
model.node(1, 0., 0.)
model.node(2, L , 0.)
@@ -551,7 +551,7 @@ Create the model
-
+
node 1 0. 0. ;
node 2 $L 0. ;
@@ -581,13 +581,13 @@ Create the model
Python
Tcl
@@ -603,7 +603,7 @@ Create the model
-
+
model.fix(1, 1, 1, 1)
model.fix(2, 1, 1, 1)
@@ -616,7 +616,7 @@ Create the model
-
+
fix 1 1 1 1;
fix 2 1 1 1;
@@ -644,13 +644,13 @@ Create the model
Python
Tcl
@@ -666,7 +666,7 @@ Create the model
-
+
model.mass(3, m , 0., 0. )
model.mass(4, m , 0., 0. )
@@ -681,7 +681,7 @@ Create the model
-
+
mass 3 $m 0. 0. ;
mass 4 $m 0. 0. ;
@@ -714,13 +714,13 @@ Create the model
Python
Tcl
@@ -736,7 +736,7 @@ Create the model
-
+
model.element("ElasticBeamColumn", 1, 1, 3, Ac, Ec, 2.*Ic, TransfTag)
model.element("ElasticBeamColumn", 2, 3, 5, Ac, Ec, Ic, TransfTag)
@@ -753,7 +753,7 @@ Create the model
-
+
element elasticBeamColumn 1 1 3 $Ac $Ec [expr 2.*$Ic] $TransfTag;
element elasticBeamColumn 2 3 5 $Ac $Ec $Ic $TransfTag;
@@ -791,13 +791,13 @@ Create the model
Python
Tcl
@@ -813,7 +813,7 @@ Create the model
-
+
for k in range(numModes):
model.recorder("Node", f"eigen {k}", file=f"modes/mode{k}.out", nodeRange=[1, 6], dof=[1, 2, 3])
@@ -826,7 +826,7 @@ Create the model
-
+
foreach k [range $numModes] {
recorder Node -file [format "modes/mode%i.out" $k] -nodeRange 1 6 -dof 1 2 3 "eigen $k"
diff --git a/examples/example1/index.html b/examples/example1/index.html
index 66b69b54..93823527 100644
--- a/examples/example1/index.html
+++ b/examples/example1/index.html
@@ -370,13 +370,13 @@ Model
Python
Tcl
@@ -392,7 +392,7 @@ Model
-
+
import opensees.openseespy as ops
@@ -406,7 +406,7 @@ Model
-
+
model -ndm 2 -ndf 2
@@ -433,13 +433,13 @@ Model
Python
Tcl
@@ -455,7 +455,7 @@ Model
-
+
# Create nodes
# tag X Y
@@ -472,7 +472,7 @@ Model
-
+
# Create nodes & add to domain
# tag X Y
@@ -501,13 +501,13 @@ Model
Python
Tcl
@@ -523,7 +523,7 @@ Model
-
+
# set the boundary conditions
# nodeID xRestrnt? yRestrnt?
@@ -539,7 +539,7 @@ Model
-
+
# Set the boundary conditions
# tag X Y
@@ -569,13 +569,13 @@ Model
Python
Tcl
@@ -591,7 +591,7 @@ Model
-
+
# Create Elastic material prototype
model.uniaxialMaterial("Elastic", 1, 3000)
@@ -604,7 +604,7 @@ Model
-
+
# Create Elastic material prototype
uniaxialMaterial Elastic 1 3000;
@@ -636,13 +636,13 @@ Model
Python
Tcl
@@ -658,7 +658,7 @@ Model
-
+
# Type tag nodes Area material
model.element("Truss", 1, (1, 4), 10.0, 1 )
@@ -673,7 +673,7 @@ Model
-
+
element Truss 1 1 4 10.0 1;
element Truss 2 2 4 5.0 1;
@@ -707,13 +707,13 @@ Loads
Python
Tcl
@@ -729,7 +729,7 @@ Loads
-
+
loads = {4: [100, -50]}
@@ -741,7 +741,7 @@ Loads
-
+
set loads {4 100 -50}
@@ -766,13 +766,13 @@ Loads
Python
Tcl
@@ -788,7 +788,7 @@ Loads
-
+
model.pattern("Plain", 1, "Linear", load=loads)
@@ -800,7 +800,7 @@ Loads
-
+
pattern Plain 1 "Linear" "load $loads"
@@ -825,13 +825,13 @@ Loads
Python
Tcl
@@ -847,7 +847,7 @@ Loads
-
+
model.pattern("Plain", 1, "Linear", load={
4: [100, -50]
@@ -861,7 +861,7 @@ Loads
-
+
pattern Plain 1 "Linear" {
load 4 100 -50
@@ -889,13 +889,13 @@ Analysis
Python
Tcl
@@ -911,7 +911,7 @@ Analysis
-
+
model.algorithm("Linear")
@@ -923,7 +923,7 @@ Analysis
-
+
algorithm Linear;
@@ -950,13 +950,13 @@ Analysis
Python
Tcl
@@ -972,7 +972,7 @@ Analysis
-
+
model.integrator("LoadControl", 1.0)
@@ -984,7 +984,7 @@ Analysis
-
+
integrator LoadControl 1.0;
@@ -1014,13 +1014,13 @@ Analysis
Python
Tcl
@@ -1036,7 +1036,7 @@ Analysis
-
+
model.analysis("Static")
@@ -1048,7 +1048,7 @@ Analysis
-
+
analysis Static;
@@ -1071,13 +1071,13 @@ Analysis
Python
Tcl
@@ -1093,7 +1093,7 @@ Analysis
-
+
model.analyze(1)
@@ -1105,7 +1105,7 @@ Analysis
-
+
analyze 1
@@ -1129,13 +1129,13 @@ Analysis
Python
Tcl
@@ -1151,7 +1151,7 @@ Analysis
-
+
model.print(node=4)
model.print("ele")
@@ -1164,7 +1164,7 @@ Analysis
-
+
print node 4
print ele
diff --git a/examples/example2/index.html b/examples/example2/index.html
index 9f1638ba..6dbf850e 100644
--- a/examples/example2/index.html
+++ b/examples/example2/index.html
@@ -366,13 +366,13 @@ Modeling
Python
Tcl
@@ -388,7 +388,7 @@ Modeling
-
+
Example2.1.py
@@ -402,7 +402,7 @@ Modeling
-
+
Example2.1.tcl
@@ -441,13 +441,13 @@ Modeling
Python
Tcl
@@ -463,7 +463,7 @@ Modeling
-
+
model.section("Fiber", 1)
# Create the concrete core fibers
@@ -486,7 +486,7 @@ Modeling
-
+
section Fiber 1 {
diff --git a/examples/example3/index.html b/examples/example3/index.html
index 8e3d9b68..d5e53e5b 100644
--- a/examples/example3/index.html
+++ b/examples/example3/index.html
@@ -365,13 +365,13 @@
Python
Tcl
@@ -387,7 +387,7 @@
-
+
portal.py
@@ -401,7 +401,7 @@
-
+
portal.tcl
@@ -463,13 +463,13 @@ create_portal
Python
Tcl
@@ -485,7 +485,7 @@ create_portal
-