Atom topic feed | site map | contact | login | Protection des données personnelles | Powered by FluxBB | réalisation artaban
You are not logged in.
Pages: 1
Hello, I wanted to know where the results of the IMPR_TABLE command are displayed
Offline
Hello,
Normally, you should have a .resu file in astk corresponding to the UL 8. Results are stored in this file.
Regards
Sébastien Meunier - EDF Lab Les Renardières
Offline
Thanks for your answer, you could also say that it is that of logical unit and that means the number 8
Offline
hello
please read my book and the docs things like that are explained in there
jean pierre aubry
consider reading my book
freely available here https://framabook.org/beginning-with-code_aster/
Offline
Thanks for your answer, you could also say that it is that of logical unit and that means the number 8
The key word UNITE specifies where the file is going to be printed depending on the kind of data you have. Regarding the number, 8 is the default identifier for .resu files. If you are working with ASTK, logic units are useful to print results of the same type and store them in different files.
E.g. You are about to print two tables (IMPR_TABLE) and store the results in two different .resu files. The next thing you do is declare the logic unit in each table:
IMPR_TABLE(TABLE=table1,
UNITE=8,); #8 is .resu by default
IMPR_TABLE(TABLE=table2,
UNITE=9,); #9 could also be .resu if defined in astk
Regards,
Guillermo
Offline
Pages: 1