AutoCAD Plant 3D Forum
Welcome to Autodesk’s AutoCAD Plant 3D Forums. Share your knowledge, ask questions, and explore popular AutoCAD Plant 3D topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Operator Callout / Annotation for Instruments with Actuator - Iso message duplication

1 REPLY 1
Reply
Message 1 of 2
JameseeT3KVM
521 Views, 1 Reply

Operator Callout / Annotation for Instruments with Actuator - Iso message duplication

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

 

 

Labels (1)
1 REPLY 1
Message 2 of 2
MateusMaciel
in reply to: JameseeT3KVM

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*')" />

 

 

mateustilapa@gmail.com

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report