Aug 9, 2011 #1 jdmay Mechanical Joined Jun 16, 2011 Messages 6 Location US I am attempting to write an uhyper routine for three materials. Abaqus is returning a "problem during compilation" error. Can someone help find the error in my code?
I am attempting to write an uhyper routine for three materials. Abaqus is returning a "problem during compilation" error. Can someone help find the error in my code?
Aug 11, 2011 #2 johnhors Aerospace Joined Jan 21, 2004 Messages 1,021 Location GB Your code starts with "PROGRAM MAIN", but this main routine ends with a RETURN statement, that is not correct. You assign double precision values to ZERO,ONE,TWO,and THREE, but double precision has not been declared for these or any other variables. Many variables like C10, C01, C11, C20, C30, D1 are declared and never used, and many routine arguments are also not used. http://www.Roshaz.com quality, cost effective FEA solutions Upvote 0 Downvote
Your code starts with "PROGRAM MAIN", but this main routine ends with a RETURN statement, that is not correct. You assign double precision values to ZERO,ONE,TWO,and THREE, but double precision has not been declared for these or any other variables. Many variables like C10, C01, C11, C20, C30, D1 are declared and never used, and many routine arguments are also not used. http://www.Roshaz.com quality, cost effective FEA solutions