1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
<?xml version="1.0"?>
<!--
This input contains the first part of fault tree with transfer symbols.
-->
<opsa-mef xmlns:xi="http://www.w3.org/2001/XInclude">
<define-fault-tree name="TransOne">
<define-gate name="TransOne">
<and>
<event name="C"/>
<event name="TransTwo"/> <!-- The gate with Transfer-In symbol -->
</and>
</define-gate>
</define-fault-tree>
<xi:include href="trans_two.xml" xpointer="xpointer(/opsa-mef/*)"/>
<xi:include href="trans_model_data.xml" xpointer="xpointer(/opsa-mef/*)"/>
</opsa-mef>
|