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...
...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
*NODE OUTPUT
EPOT
I'm now particularly interested in how...
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 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 is what I get in abaqus command window:
Here there are...
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...
...may be difference between the
version in c++ of my subroutine and the one in fortran are the
following:
extern "C" void
FOR_NAME(uel, UEL)(double** pRhs,double** pAmatrx,double*
pSvars,double* pEnergy,int* pNdofel,int* pNrhs,int* pNsvars,
double* pProps,int* pNprops,double** pCoords,int*...
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...
...file for possible error messages if the file exists.
ABAQUS/Analysis exited with errors
------------------------------------------------------------------
In my msg file I found
***ERROR: USER SUBROUTINE UEL MISSING
Has anyone any idea for solving my execution problem?
Thanks a lot in...
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...