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...