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...
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...
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...
Hello to everybody. This is my first discussion on this forum. First I want say: "sorry for my bad english"
I want run an abaqus job analysis using 27 similar but different general user elements. I know I can refer to these user elements in elementDefinitions and other blockOptions in InputFile...