You need to give us more info for us to help. What are you modelling? what are your analysis options? etc.
From that error it is most likely because you have a singular stiffness matrix. You need to check the boundary conditions to make sure your model is properly restrained
Analysis error
Moderators: silvia, selimgunay, Moderators
Re: Analysis error
brag006 wrote:
> You need to give us more info for us to help. What are you modelling? what
> are your analysis options? etc.
> From that error it is most likely because you have a singular stiffness
> matrix. You need to check the boundary conditions to make sure your model
> is properly restrained
-------------
Thanks for your answer
My model is Jacket platform and my analysis option is ....
system SparseGeneral -piv
# Create the constraint handler, the transformation method
constraints Transformation
# Create the DOF numberer, the reverse Cuthill-McKee algorithm
numberer RCM
# Create the convergence test, the norm of the residual with a tolerance of
# 1 and a max number of iterations of 10
test NormUnbalance 1.0e-6 10
# Create the solution algorithm, a Newton-Raphson algorithm
algorithm Newton
# Create the integration scheme, the LoadControl scheme using steps of 1
integrator LoadControl 1
# Create the analysis object
analysis Static
# initialize in case we need to do an initial stiffness iteration
initialize
# ------------------------------
# End of analysis generation
# ------------------------------
# ------------------------------
# Start of recorder generation
# ------------------------------
# Create a recorder to monitor nodal displacements
recorder Node -file STATICGravity.out -time -node 907 -dof 1 2 disp
# --------------------------------
# End of recorder generation
# ---------------------------------
# ------------------------------
# Finally perform the analysis
# ------------------------------
# perform the gravity load analysis, requires 10 steps to reach the load level
analyze 1
# Print out the state of nodes 5010
print node 907
> You need to give us more info for us to help. What are you modelling? what
> are your analysis options? etc.
> From that error it is most likely because you have a singular stiffness
> matrix. You need to check the boundary conditions to make sure your model
> is properly restrained
-------------
Thanks for your answer
My model is Jacket platform and my analysis option is ....
system SparseGeneral -piv
# Create the constraint handler, the transformation method
constraints Transformation
# Create the DOF numberer, the reverse Cuthill-McKee algorithm
numberer RCM
# Create the convergence test, the norm of the residual with a tolerance of
# 1 and a max number of iterations of 10
test NormUnbalance 1.0e-6 10
# Create the solution algorithm, a Newton-Raphson algorithm
algorithm Newton
# Create the integration scheme, the LoadControl scheme using steps of 1
integrator LoadControl 1
# Create the analysis object
analysis Static
# initialize in case we need to do an initial stiffness iteration
initialize
# ------------------------------
# End of analysis generation
# ------------------------------
# ------------------------------
# Start of recorder generation
# ------------------------------
# Create a recorder to monitor nodal displacements
recorder Node -file STATICGravity.out -time -node 907 -dof 1 2 disp
# --------------------------------
# End of recorder generation
# ---------------------------------
# ------------------------------
# Finally perform the analysis
# ------------------------------
# perform the gravity load analysis, requires 10 steps to reach the load level
analyze 1
# Print out the state of nodes 5010
print node 907
Re: Analysis error
check you constraints. make sure your model is restrained properly against the applied loads
Re: Analysis error
your matrix is singular. check your materials, element connectivities, or add more constraints.