Author Topic: Store informations in a seperate file  (Read 2075 times)

Shilmin

  • Jr. Member
  • **
  • Posts: 40
Store informations in a seperate file
« 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

Prof. R.L. Taylor

  • Administrator
  • FEAP Guru
  • *****
  • Posts: 2649
Re: Store informations in a seperate file
« Reply #1 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

Shilmin

  • Jr. Member
  • **
  • Posts: 40
Re: Store informations in a seperate file
« Reply #2 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