Call: (888) 800-4PLM | Email: info@plmadvisors.com
PLM Experts Q&A

Ask the PLM Experts: How do we use GetImplementing() in RFLP structure?

PLM Experts Answer:

The `getImplementing()` function in an RFLP (Requirements, Functional, Logical, Physical) structure is typically used in model-based systems engineering (MBSE) contexts, particularly with tools like SysML (Systems Modeling Language). This function is designed to retrieve the implementing elements of a specific model element within the RFLP structure.

Here’s a general guide on how to use `getImplementing()`:

  1. Understand the RFLP Structure: RFLP stands for Requirements (R), Functional (F), Logical (L), and Physical (P) aspects of a system. Each layer in this structure represents a different level of abstraction in the system model.
  2. Identify the Model Element: Determine the specific model element for which you want to find implementing elements. This could be a requirement, a function, a logical block, etc.
  3. Use the getImplementing() Function: You can call this function on the identified model element. The function will return a set of elements that are linked as implementing the specified element.
  4. Check Tool-specific Syntax: The exact syntax for `getImplementing()` may vary depending on the MBSE tool or platform you are using. Ensure that you are familiar with the specific syntax and usage as per the tool’s documentation.
  5. Analyze the Results: The function will return elements from the lower abstraction layers that implement the specified element from a higher layer. For example, if called on a functional element, it might return the logical components that implement this function.
  6. Integration with Tool Features: In many MBSE tools, this function integrates with other features like traceability, allowing you to track how high-level requirements are implemented throughout the system.
  7. Error Handling: Be prepared to handle cases where the function returns no implementing elements, which could indicate a gap in the system design or an error in the model.

The exact implementation details and capabilities of `getImplementing()` can vary based on the specific MBSE tool you are using, such as Cameo Systems Modeler, Capella, or others. Always refer to the documentation of your specific tool for the most accurate and detailed instructions.

Back to Top