Zadrobu
Structural
- Sep 7, 2014
- 38
I'm having a bit of trouble with an ASSIGN statement in a NASTRAN data file. I need to assign a file that has a quite long filepath. At first I tried simply putting the statement on a single line like so:
However this statement results in a fatal error because apparently it exceeds a line length limit:
I know that in INCLUDE statements you can simply split the filepath over two lines with a line break. I've tried the same here in the ASSIGN statement, but without success.
So right now I'm stuck and I would be really grateful for any help. Does anyone here know of a solution?
Code:
ASSIGN INPUTT4='subfolder_with_a_long_name/subfolder_with_a_long_name/subfolder_with_a_long_name/file.op4'
However this statement results in a fatal error because apparently it exceeds a line length limit:
Code:
ASSIGN INPUTT4='/subfolder_with_a_long_name/subfolder_with_a_long_name/sUBFOLDER
0*** USER FATAL MESSAGE 723 (XTRACI)
THE ABOVE FILE NAME CONTAINS AN UNBALANCED NUMBER OF DELIMITERS.
I know that in INCLUDE statements you can simply split the filepath over two lines with a line break. I've tried the same here in the ASSIGN statement, but without success.
So right now I'm stuck and I would be really grateful for any help. Does anyone here know of a solution?