get and set DCellInstArray dcell_inst

Hi Matthias,
I use inst.dcell_inst to grep the info about array. And I would like to modify the array parameter (red square).
1. How can I do that?
2. What is the meaning of each value and how can i modify it? Thanks.

Comments

  • Hi,

    these are row/column vectors and array dimensions.

    You specification translates into:

    # [0,0.32...
    dcell_inst.a = RBA::DVector(0, 0.32)
    # *7;...
    decll_inst.na = 7
    # 0,0.32...
    dcell_inst.b = RBA::DVector(0, 0.32)
    # *7]
    decll_inst.nb = 7
    

    To change the properties of an instance, use:

    dci = inst.dcell_inst
    dci.a = ...
    dci.na = ...
    dci.b = ...
    dci.na = ...
    inst.dcell_inst = dci
    

    Matthias

Sign In or Register to comment.