rotowash_master
Bioengineer
- Nov 7, 2023
- 3
Good evening everybody,
I am trying to get an output .txt file, using the code at the end of my UMAT:
OPEN(105, file='C:\Temp\Aereo\List.txt',position='append')
[/indent]WRITE(105,*)NOEL,NPT,MAX_S
CLOSE(105)
The problem is that I am capable of getting the variable MAX_S for every NPT, for every NOEL, but I always get a .txt file where the first section is just MAX_S=0 for every NPT and NOEL, and then I get the actual values I am looking for.
Do you know what I could change in order to get a proper .txt file where I get only the values I am looking for and not the set of null values?
I am trying to get an output .txt file, using the code at the end of my UMAT:
OPEN(105, file='C:\Temp\Aereo\List.txt',position='append')
[/indent]WRITE(105,*)NOEL,NPT,MAX_S
CLOSE(105)
The problem is that I am capable of getting the variable MAX_S for every NPT, for every NOEL, but I always get a .txt file where the first section is just MAX_S=0 for every NPT and NOEL, and then I get the actual values I am looking for.
Do you know what I could change in order to get a proper .txt file where I get only the values I am looking for and not the set of null values?