Author Topic: parameters input number  (Read 6373 times)

WT202

  • New Member
  • *
  • Posts: 6
parameters input number
« on: August 27, 2013, 09:00:35 AM »
Dear Sir or Madam,

 I would like to ask how many parameters input  d(*) one can set, when one is using call pinput(d(1), *)?  Is any limit? Thank you.

FEAP_Admin

  • Administrator
  • FEAP Guru
  • *****
  • Posts: 997
Re: parameters input number
« Reply #1 on: August 27, 2013, 12:55:17 PM »
The default number of parameter for elements is 200 -- d array.  There are also be default 50 slots in the 'user' d array.
You can change either of the defaults in your input file.

See page 230 of the user manaul.

FEAP_Admin

  • Administrator
  • FEAP Guru
  • *****
  • Posts: 997
Re: parameters input number
« Reply #2 on: August 27, 2013, 01:15:00 PM »
Correction, with respect to the latest version of the code 8.4, there are 300 slots (per material) in the D array and 150 slots in the user D array -- by default.

To see what is set in your version look in program/pnewprob.f and examine the default sizes for npd and nud.

Prof. R.L. Taylor

  • Administrator
  • FEAP Guru
  • *****
  • Posts: 2653
Re: parameters input number
« Reply #3 on: August 28, 2013, 09:03:42 AM »
While there are many, each time you call pinput you can only input a maximum of 16 items.  Thus you need to specify an off set for the d(*) array [i.e., d(16) starts reading into the postion d(16), d(17),...]

Read the programmer manual for  more information.