Here is what I get while running the tappo_6ed8_60x128x60 abaqus job on windows xp:
C:\Documents and Settings\alorenzom\Desktop\Electrical>abaqus job=tappo_6ed8_60x
128x60 interactive
Old job files exist. Overwrite? (y/n): y
Abaqus JOB tappo_6ed8_60x128x60
Abaqus Version 6.7-1
Begin Analysis...
Can I have as an output the matrix K and the right-hand side vector p of a linear problem
K u = p
when I solve it by an abaqus analysis?
I know I can obtain u for all my nodal dofs by the output request
*OUTPUT,FIELD
*NODE OUTPUT
U
or in the case of an electrical analysis
*OUTPUT,FIELD...
I wrote a C++ post-processing program (I copied instructions written in abaqus documentation):
#include <odb_API.h>
int ABQmain(int argc, char **argv)
{
//Open the output database used by the tutorial.
odb_Odb& odb = openOdb("viewer_tutorial.odb");
//Create a variable that refers to the...
I'm trying to use c++ interface to access an output database.
I fetched viewer_tutorial.odb.
I wrote a source file named experiment.cpp with this code:
#include <odb_API.h>
int ABQmain(int argc, char **argv)
{
odb_Odb& odb = openOdb("viewer_tutorial.odb");
odb.close();
return 0
}
Here...
Sorry I'm not able to help you about this.I have no experience about this.I hope someone can help you.Post a message with appropriate title and briefly all of your information.Good Luck!
Do you want to run with a single execution procedure more than one abaqus analysis jobs that are different only for some parameters, don't you?
Sorry I don't know how you can do this and if you could use fortran subroutine to do this.
I'm performing a study of convergence of a solution through...
My uel subroutine written in fortran, now finally give me correct
results.
That isn't the same for the version in c++.I don't know why but I
have zero pivot for all my loaded degrees of freedom and then
all displacement zero-valued. I have printed for each of my elements
amatrx and they are...
Because of my unexperience I thought that my problems finished but it isn't so.
My ABAQUS JOB COMPLETED but in msg file there are WARNING stating Solver problem-Zero pivot when processing 49 of my 78 loaded dofs and in odb there are warnings stating zero pivot for all my 78 loaded dofs.And...
Yes he is my chief!
By the way, I just slightly modified my subroutine source code and I run my simulation successfully. I compare successfully some results in odb obtained from my simulation and those corresponding in odb obtained from simulation with fortarn user subroutine (that I downloaded...
Dear all
I want run an abaqus simulation with a user subroutine written in C/C++.
I have downloaded one from abaqus online support system answer 737.
I modified my extension file from .c to .cpp. I add it to a Win32 empty project in Ms Development Environment 2003.For fixing a link warning , I...
I tried to avoid my problem described previously in this way.
I create an abaqus env file in my local directory copying that in site directory and adding usub_lib_dir variable and adding \NODEFAULTLIB:LIBCMT.LIB in the tuple value of parameters link_sl and link_exe. My local abaqus env file...
If you want know more about this discussion you can join abaqus yahoogroups and visit
http://tech.groups.yahoo.com/group/ABAQUS/message/15761
I don't know if this is an inappropriate post because I mention another forum.I think it can be useful for anybody.If I'm in error, I'm sorry.
Dear All,
i tried to run an analysis job linked with a user subroutine (written in fortran) source file, with
Abaqus 6.6 on a windowsx86-32 platform.The files are example files provided with release.
I get in abaqus command window this messsage:
C:\Temp>abaqus job=ueldynam user=ueldynam.for...
Thank you so much for your helpfulness.
I think I need different element types, because even if I have the same dofs I have different shape functions. I have written the stiffness matrix for all my element types with the software Maple.I might be in error but I think so I said. Perhaps I need...
Thank you so much for your answer. I didn't see this simple particular in Abaqus documentation.
All elements in my model have the same degrees of freedom but because I need 27 different general user element types because I have 27 different element types (they have trial functions just a...