Hello :)
I am trying to define two elements with different real constants in APDL. This is my code:
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!element 1
ET,3,CIRCU94,0 !SET UP element
R,1,1 !RESISTANCE VALUE=1
TYPE,3 !SET ELEMENT TYPE
E, n1, n2 !CREATE RESISTOR BETWEEN NODES 1 AND 2
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!element 2
ET,3,CIRCU94,0 !SET UP element
R,2,10000 !Capacitance VALUE=1
TYPE,4 !SET ELEMENT TYPE
E, n2, n3 !CREATE RESISTOR BETWEEN NODES 1 AND 2
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
The problem is that the software creates two sets, and in each set defines elements with the same real constants!!! It means, for instance, set 1 includes all elements with real constant=1 & set 2 includes all elements with real constant=2.
Thanks for any hint.