-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have modeled a simply supported beam but its giving the following error: #357
Comments
##Beam x-section model def getSections():
print("4") the analysis of model file stops at print 4, it seems like its not computing for model function. Kindly help Analysis file: -- coding: utf-8 --""" @author:Sadia import ModelFunctions as mf Units=============================================================================#m, N/m2, =============================================================================Input Variables=============================================================================print("1") ===================================================================OpenSees Analysis=============================================================================op.wipe() set modelbuilder#calling functions from model file mf.buildModel() create TimeSeriesop.timeSeries("Linear", 1) create a plain load patternop.pattern("Plain", 1, 1) Create the nodal load - command: load nodeID xForce yForceop.load(2, Px, Py,) Record Resultsop.recorder('Node', '-file', "NodeDisp.out", '-time', '-node', 2, '-dof', 1,2,'disp') create SOEop.system("BandSPD") create DOF numberop.numberer("RCM") create constraint handlerop.constraints("Transformation") create integratorop.integrator("LoadControl", 1.0) create algorithmop.algorithm("Newton") create analysis objectop.analysis("Static") perform the analysisop.initialize() print("Results")print("Nodal Displacements") print("uy2") op.wipe() |
UserWarning: Attempting to set identical bottom == top == 0.0 results in singular transformations; automatically expanding.
ax.set_ylim(viewCenter[1] - viewDelta[1]/2, viewCenter[1] + viewDelta[1]/2)
Node::addunbalLoad - load to add of incorrect size 2 should be 3
Node::addunbalLoad - load to add of incorrect size 2 should be 3
Node::addunbalLoad - load to add of incorrect size 2 should be 3
The text was updated successfully, but these errors were encountered: