Anyone seen this before? I adjusted the ValveOperator to include instruments in order to get the operator direction annotation for actuated valves. But now all my regular valves are coming out with multiple callouts!
I tried two different styles, and get different results with the same code. No idea what is happening here. Anyhelp would be great
AutoCAD Plant 3D 2019, and here is the filters I adjusted:
<Filter Name="ValveOperatorPrimary" Value="Type LIKE 'VALVE*' OR Type LIKE 'INSTRUMENT*' AND (DIRECTION='U' OR DIRECTION='D' OR DIRECTION='E' OR DIRECTION='N' OR DIRECTION='S' OR DIRECTION='W')" />
<Filter Name="ValveOperatorU" Value="Type LIKE 'VALVE*' OR Type LIKE 'INSTRUMENT*' AND DIRECTION='U'" />
<Filter Name="ValveOperatorD" Value="Type LIKE 'VALVE*' OR Type LIKE 'INSTRUMENT*' AND DIRECTION='D'" />
<Filter Name="ValveOperatorW" Value="Type LIKE 'VALVE*' OR Type LIKE 'INSTRUMENT*' AND DIRECTION='W'" />
<Filter Name="ValveOperatorE" Value="Type LIKE 'VALVE*' OR Type LIKE 'INSTRUMENT*' AND DIRECTION='E'" />
<Filter Name="ValveOperatorS" Value="Type LIKE 'VALVE*' OR Type LIKE 'INSTRUMENT*' AND DIRECTION='S'" />
<Filter Name="ValveOperatorN" Value="Type LIKE 'VALVE*' OR Type LIKE 'INSTRUMENT*' AND DIRECTION='N'" />
Erin
I believe the problem is in the filter query and the configuration in the ComponentScheme node.
Try one of two solutions:
1- Configuring ValveOperator_Primary:
As shown in the "ComponentScheme" image, set the ValveOperator_Primary Enabled = "true" node. And the other nodes Enabled = "false";
2- Configuring query
In this option, leave ValveOperator_Primary with Enabled = "false" and the others Enabled = "true". Follow the following settings in the filter's:
<Filter Name="ValveOperatorU" Value="DIRECTION='U' AND (Type LIKE 'VALVE*' OR Type LIKE 'INSTRUMENT*')" />
<Filter Name="ValveOperatorD" Value="DIRECTION='D' AND (Type LIKE 'VALVE*' OR Type LIKE 'INSTRUMENT*')" />
<Filter Name="ValveOperatorW" Value="DIRECTION='W' AND (Type LIKE 'VALVE*' OR Type LIKE 'INSTRUMENT*')" />
<Filter Name="ValveOperatorE" Value="DIRECTION='E' AND (Type LIKE 'VALVE*' OR Type LIKE 'INSTRUMENT*')" />
<Filter Name="ValveOperatorS" Value="DIRECTION='S' AND (Type LIKE 'VALVE*' OR Type LIKE 'INSTRUMENT*')" />
<Filter Name="ValveOperatorN" Value="DIRECTION='N' AND (Type LIKE 'VALVE*' OR Type LIKE 'INSTRUMENT*')" />
Can't find what you're looking for? Ask the community or share your knowledge.