FEAP User Forum

FEAP => Programming => Topic started by: Shilmin on May 11, 2015, 07:27:32 PM

Title: Store informations in a seperate file
Post by: Shilmin on May 11, 2015, 07:27:32 PM
Dear All,

I want to store some results such as stresses, nodal reactions and nodal displacements in a separate file.
I add ‘integer it8’ in iofile.h, ‘it8 = 5’ in feap84.f, ‘open(unit=it8,file='Oputfile',status='new')’ in pcontr.f, ‘close(unit=it8)’ in plstop.f, ‘write(it8,200*) *****’ in prtcmp.f and prtrea.f, and the stress output parts are also modified. All these modifications followed ‘iow’parts. After compiled, it seems the stress and nodal reactions are output in ‘Oputfile’ correctly, however, nodal displacements only show in orginal output file, not in ‘Oputfile’.

Thank you!
Xiaomin
Title: Re: Store informations in a seperate file
Post by: Prof. R.L. Taylor on May 11, 2015, 08:46:22 PM
Probably the displacement values are not output in prtcmp.f -- this is the output for complex data (real, imag) ?  Check where the outputs are going for your data.   Probably prtdis.f
Title: Re: Store informations in a seperate file
Post by: Shilmin on May 11, 2015, 11:46:50 PM
Dear Prof. R.L. Taylor,

Thank you for your timely reply! I search the wrong key words. Thank you!

Xiaomin