Overview Schemas Index

Layered_interconnect_module_with_printed_component_design_arm (jsdai.SLayered_interconnect_module_with_printed_component_design_arm)


FUNCTION limdwpcd_get_prs
          (input1 : SET [0:?] OF Plated_passage; input2 : SET [0:?] OF Product_view_definition) : SET [0:?] OF Stratum;

LOCAL
          s : SET  OF  Stratum := [];  --this gives us access TO  the information base
          stol : SET  OF  Stratum_technology_occurrence_link := [];  --this gives us access TO  the information base
          ptatsm : SET OF Passage_technology_allocation_to_stack_model := [];  --this gives us access TO  the information base
END_LOCAL;

          REPEAT i := 1 TO  SIZEOF(input1) BY  1;
             ptatsm := ptatsm + input1[i]\Inter_stratum_feature.vertical_extent;
          END_REPEAT;

          REPEAT i := 1 TO SIZEOF(ptatsm) BY 1;
             stol := stol + ptatsm[i]\Stratum_sub_stack.stratum_technology_sequence;
          END_REPEAT;

             s := limdwpcd_get_stolrs(stol, input2);
          RETURN(s);

END_FUNCTION; -- limdwpcd_get_prs

public class FLimdwpcd_get_prs
          public static Value run(SdaiContext _context, Value input1, Value input2)