Discussion:
Format of result file (.fil)
eng_arg
2005-10-07 21:04:57 UTC
Permalink
Hi

I have a problem with the format of the *.fil file. Actually I don't
use abaqus cae. I just write an input file and run it in abaqus and I
want to have my nodes, strains, and stresses in a good and clean format
(for example in separate columns) in result file. Is there any command
that by putting it into input file I can specify a good shape for
*.fil ?

Thank you for your time
Arghavan







------------------------ Yahoo! Groups Sponsor --------------------~-->
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/PMYolB/TM
--------------------------------------------------------------------~->
BenZ
2005-10-08 07:49:22 UTC
Permalink
What you want to do is easy with the .dat and the use of the cards
*NODE PRINT and *EL PRINT. The .fil is more often used for post-
processing purposes with 3rd-party products (like I-Deas, Patran...).

BenZ.
Post by eng_arg
Hi
I have a problem with the format of the *.fil file. Actually I don't
use abaqus cae. I just write an input file and run it in abaqus and
I
Post by eng_arg
want to have my nodes, strains, and stresses in a good and clean format
(for example in separate columns) in result file. Is there any
command
Post by eng_arg
that by putting it into input file I can specify a good shape for
*.fil ?
Thank you for your time
Arghavan
------------------------ Yahoo! Groups Sponsor --------------------~-->
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/PMYolB/TM
--------------------------------------------------------------------~->
eng_arg
2005-10-10 21:37:42 UTC
Permalink
The problem is .dat file does not have any constant format, and the
format changes when I use another file(for example the positions of
strings and numbers changes), and since I want to read the results
by another program (say Matlab) I need a fixed format. I just want
to know if there is a way to change .fil file to a nice ASCII format.
Thank you again
Arghavan
Post by BenZ
What you want to do is easy with the .dat and the use of the cards
*NODE PRINT and *EL PRINT. The .fil is more often used for post-
processing purposes with 3rd-party products (like I-Deas,
Patran...).
Post by BenZ
BenZ.
Post by eng_arg
Hi
I have a problem with the format of the *.fil file. Actually I don't
use abaqus cae. I just write an input file and run it in abaqus and
I
Post by eng_arg
want to have my nodes, strains, and stresses in a good and clean
format
Post by eng_arg
(for example in separate columns) in result file. Is there any
command
Post by eng_arg
that by putting it into input file I can specify a good shape for
*.fil ?
Thank you for your time
Arghavan
------------------------ Yahoo! Groups Sponsor --------------------~-->
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/PMYolB/TM
--------------------------------------------------------------------~->
suhoi
2005-10-11 08:29:27 UTC
Permalink
the DAT file is not such a problem. Is just a text file, and as long as you are using Matlab to post-process it, I see no reason to get into troubles.
For instance, as you want the displacements, search for string '"NODE FOOT- '" and then extract the displacements starting with 3 lines below that occurance, for each increment (in case you run a NLG).


j=1;

fid = fopen([filename,'.dat']);

str1='FOOT';

while 1

line = fgetl(fid);

if ~isstr(line), break, end

N=findstr(line,str1);

found = 0;

if ~isempty(N)

line = fgetl(fid);

line = fgetl(fid);

found = 1;

end;

if found == 1

endfound = 0; m=1;

while endfound==0

line = fgetl(fid);

num=str2num(line);

A(j).matrix(m,:) = num(:); %structure matrix A stores the lines you read

%put a condition here to exit your loop, viz. no of lines read
end;
j=j+1;
end;
end;

fclose(fid);



this is working for each increment you have. You may need to put more "exit" conditions. It's easy, and you don't need a particular format to post-process your data.



eng_arg <***@yahoo.com> wrote:
The problem is .dat file does not have any constant format, and the
format changes when I use another file(for example the positions of
strings and numbers changes), and since I want to read the results
by another program (say Matlab) I need a fixed format. I just want
to know if there is a way to change .fil file to a nice ASCII format.
Thank you again
Arghavan
Post by BenZ
What you want to do is easy with the .dat and the use of the cards
*NODE PRINT and *EL PRINT. The .fil is more often used for post-
processing purposes with 3rd-party products (like I-Deas,
Patran...).
Post by BenZ
BenZ.
Post by eng_arg
Hi
I have a problem with the format of the *.fil file. Actually I don't
use abaqus cae. I just write an input file and run it in abaqus and
I
Post by eng_arg
want to have my nodes, strains, and stresses in a good and clean
format
Post by eng_arg
(for example in separate columns) in result file. Is there any
command
Post by eng_arg
that by putting it into input file I can specify a good shape for
*.fil ?
Thank you for your time
Arghavan
Abd. Rahim
2005-10-12 10:19:49 UTC
Permalink
Hi

I try to get and compare results of two approaches of extracting
natural frequency namely Lanczos and subspace.

The input file as follows:
*Frequency,eigensolver=lanczos
100,

or

*Frequency,eigensolver=subspace
100,


The Lanczos eigensolver can extract 100 frequencies whilst Subspace
only extract 6 frequencies (which are rigid modes). Does anyone know
why this happens?

Thank you.

ABD. RAHIM ABU BAKAR
***************************
186 Boaler Street
Liverpool
L6 6AD
United Kingdom
Mobile :07845632459
Email: ***@liverpool.ac.uk
***************************




__________________________________
Yahoo! Mail - PC Magazine Editors' Choice 2005
http://mail.yahoo.com




------------------------ Yahoo! Groups Sponsor --------------------~-->
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/PMYolB/TM
--------------------------------------------------------------------~->
Ana Vila Verde
2005-10-12 11:54:13 UTC
Permalink
Subspace should only be used when one wants to extract a small number of
frequencies (typically less than 20). I don't know the details of the code,
so you'll have to have a look at the theory manual if you want more info
than this.


_________________________________
Ana Celia Araujo Vila Verde
Departamento de Fisica
Universidade do Minho
Campus de Gualtar
4710-057 BRAGA
PORTUGAL

Email: ***@fisica.uminho.pt
Tel. (general): +351 253 604 320
Fax.: +351 253 678 981 / + 351 253 604 061
__________________________________

----- Original Message -----
From: "Abd. Rahim" <***@yahoo.com>
To: <***@yahoogroups.com>
Sent: Wednesday, October 12, 2005 11:19 AM
Subject: [ABAQUS] Extracting natural frequency: Lanczos vs Subspace
Post by Abd. Rahim
Hi
I try to get and compare results of two approaches of extracting
natural frequency namely Lanczos and subspace.
*Frequency,eigensolver=lanczos
100,
or
*Frequency,eigensolver=subspace
100,
The Lanczos eigensolver can extract 100 frequencies whilst Subspace
only extract 6 frequencies (which are rigid modes). Does anyone know
why this happens?
Thank you.
ABD. RAHIM ABU BAKAR
***************************
186 Boaler Street
Liverpool
L6 6AD
United Kingdom
Mobile :07845632459
***************************
__________________________________
Yahoo! Mail - PC Magazine Editors' Choice 2005
http://mail.yahoo.com
http://groups.yahoo.com/group/abaqus
Yahoo! Groups Links
------------------------ Yahoo! Groups Sponsor --------------------~-->
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/PMYolB/TM
--------------------------------------------------------------------~->
roshan mahadule
2005-10-13 06:30:39 UTC
Permalink
check out the syntax for subspace solver:
*Frequency,eigensolver=subspace
100,



I am doubtful....Please check once with the deck...


Roshan


---------------------------------
Yahoo! Music Unlimited - Access over 1 million songs. Try it free.

[Non-text portions of this message have been removed]





------------------------ Yahoo! Groups Sponsor --------------------~-->
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/PMYolB/TM
--------------------------------------------------------------------~->
nagananda krishna burra
2005-10-13 13:43:49 UTC
Permalink
Hallo,

I like to show a "SPRING" shape connecting 2 nodes
while printing an image in MSC/PATRAN with ABAQUS as
solver. Is there any possibility that PATRAN shows an
element connecting 2 nodes in the shape of a spring
and not like a straight line ?

Thanking you,
Nagananda Krishna




__________________________________
Yahoo! Music Unlimited
Access over 1 million songs. Try it free.
http://music.yahoo.com/unlimited/




------------------------ Yahoo! Groups Sponsor --------------------~-->
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/PMYolB/TM
--------------------------------------------------------------------~->
BenZ
2005-10-13 17:19:18 UTC
Permalink
I don't think, but maybe in the latest version it is OK... But
Abaqus/Viewer does that.

BenZ.
Post by nagananda krishna burra
Hallo,
I like to show a "SPRING" shape connecting 2 nodes
while printing an image in MSC/PATRAN with ABAQUS as
solver. Is there any possibility that PATRAN shows an
element connecting 2 nodes in the shape of a spring
and not like a straight line ?
Thanking you,
Nagananda Krishna
__________________________________
Yahoo! Music Unlimited
Access over 1 million songs. Try it free.
http://music.yahoo.com/unlimited/
------------------------ Yahoo! Groups Sponsor --------------------~-->
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/PMYolB/TM
--------------------------------------------------------------------~->
Zuhan Xi
2005-10-08 14:41:18 UTC
Permalink
I think that *.fil is for post-process, You may use *.dat file for your purpose.

eng_arg <***@yahoo.com> wrote: Hi

I have a problem with the format of the *.fil file. Actually I don't
use abaqus cae. I just write an input file and run it in abaqus and I
want to have my nodes, strains, and stresses in a good and clean format
(for example in separate columns) in result file. Is there any command
that by putting it into input file I can specify a good shape for
*.fil ?

Thank you for your time
Arghavan
v***@netscape.net
2005-10-11 09:07:32 UTC
Permalink
If u r using python u can arange it any format and way u want, u can even invent your own extension.
Post by eng_arg
The problem is .dat file does not have any constant format, and the
format changes when I use another file(for example the positions of
strings and numbers changes), and since I want to read the results
by another program (say Matlab) I need a fixed format. I just want
to know if there is a way to change .fil file to a nice ASCII format.
Thank you again
Arghavan
Post by BenZ
What you want to do is easy with the .dat and the use of the cards
*NODE PRINT and *EL PRINT. The .fil is more often used for post-
processing purposes with 3rd-party products (like I-Deas,
Patran...).
Post by BenZ
BenZ.
Post by eng_arg
Hi
I have a problem with the format of the *.fil file. Actually I
don't
Post by BenZ
Post by eng_arg
use abaqus cae. I just write an input file and run it in abaqus
and
Post by BenZ
I
Post by eng_arg
want to have my nodes, strains, and stresses in a good and clean
format
Post by eng_arg
(for example in separate columns) in result file. Is there any
command
Post by eng_arg
that by putting it into input file I can specify a good shape
for
Post by BenZ
Post by eng_arg
*.fil ?
Thank you for your time
Arghavan
__________________________________________________________________
Switch to Netscape Internet Service.
As low as $9.95 a month -- Sign up today at http://isp.netscape.com/register

Netscape. Just the Net You Need.

New! Netscape Toolbar for Internet Explorer
Search from anywhere on the Web and block those annoying pop-ups.
Download now at http://channels.netscape.com/ns/search/install.jsp




------------------------ Yahoo! Groups Sponsor --------------------~-->
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/PMYolB/TM
--------------------------------------------------------------------~->
Continue reading on narkive:
Loading...