opfcad.blogg.se

Odb abaqus 6.14 documentation
Odb abaqus 6.14 documentation











I have Abaqus 6.14 installed and working. Simulia is most probably using an older version of the Visual Studio C++ compiler than you are.I want to read. Try to use the same Visual Studio C++ compiler as the one used for compiling Abaqus. It should be a good starting point for your work.ĮDIT: After pointing out that you wish to use the Visual Studio for development and compilation, make sure to check the system requirements for the Abaqus version you are using. The section "Abaqus Scripting User's Guide" contains a section "Using C++ to access an output database." There you can find some examples and the details I've pointed out here. If you have Abaqus on your machine, then you should also have the documentation. Once you have finished writing your code and would like to compile it, the correct command to use is: You must compile your Abaqus C++ code using the Abaqus make utility. Instead, the entry point for the program must be a function named ABQmain, having the same signature as the regular function main. The program you write must not contain a C++ main routine, aka the function main.There are at least two issues with your solution and approach: The other resource that guided me to use this approach : " " I'm actually following this page from the scripting documentation " " The lines "odb_initializeAPI() " and "odb_finalizeAPI() " are the lines which should be used if I want to access Abaqus ODB API outside Abaqus CAE. I'm trying to connect with people who are already familiar with Abaqus ODB C++ API who could help me on this.Įdit 1 : I don't want to use abaqus make utility because I want to build my own postprocessing application based on. "The procedure entry point could not be located in the dynamic link library ABQSMAOdbApi.dll"ĭoes it mean that I'm missing a static library containing openOdb method?

odb abaqus 6.14 documentation

With these settings, I'm able to compile it without any errors, but on execution of exe application, and all the rest of the files present in the directory "C:\SIMULIA\Abaqus\6.14-3\code\lib". This is the code file that I'm trying to compile & execute : ```Ĭout VC ++ Directories > Include Directories : C:\SIMULIA\Abaqus\6.14-3\code\include $(IncludePath)Ĭonfiguration Properties > VC ++ Directories > Library Directories :Ĭ:\SIMULIA\Abaqus\6.14-3\code\lib $(LibraryPath)Ĭonfiguration Properties > Linker > Input > Additional Dependencies :

odb abaqus 6.14 documentation

I'm trying to reference Abaqus CAE's static libraries in my Visual Studio C++ project to read my ODB file. I have Abaqus CAE, Visual Studio 2017, Visual C++ compiler installed in my computer.













Odb abaqus 6.14 documentation