AVEVA Community
AVEVA Community
  • Site
  • User
  • Site
  • Search
  • User
Modules
  • AVEVA World
  • PDMS/E3D Forum
  • Modules
  • Cancel
Modules
Draft Module Nozzle orientation drawing
  • Forums
  • Resources
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
  • Replies 7 replies
  • Subscribers 5 subscribers
  • Views 51 views
  • Users 0 members are here
Options
  • Share
  • More
  • Cancel
Related

Nozzle orientation drawing

Anders Bergenholm
Anders Bergenholm over 18 years ago
 
  • Sign in to reply
  • Cancel
  • Anders Bergenholm
    Anders Bergenholm over 18 years ago
    Hi

    What is the best way of creating outline drawings for tanks and towers with nozzle orientation and heights, in a table on the drawing, is the best way to use ADP or do we need some PML work done?
    The same is for checking drawings for nozzles on equipment's so the are according to installation drawings.

    Can any one help/guide me in the best direction?

    Thanks
    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Christopher Vitte
    Christopher Vitte over 18 years ago
    use the adp for what you are doing, just be sure to match it's rules.
    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Marcel Prosch
    Marcel Prosch over 18 years ago
    What is ADP?
    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • HowD
    HowD over 18 years ago
    What is ADP?


    http://www.pdmsworld.com/forum/showthread.php?t=1174
    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Marcel Prosch
    Marcel Prosch over 18 years ago
    Thanks, we didn't discuss that on training.
    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Olli Ekberg
    Olli Ekberg over 8 years ago
    Is there any possibilities to get orientatiom to example to label without ADP? How the orientation comes from design to draft (draw)? I know that there is ORIA but when I checked it in model it shows negative values for 270deg.

    I'm asking this because I'm making drawings from equipments for customer comments and it would easier to get value from design then making dimensions for it
    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Martin
    Martin over 6 years ago
    var !ori p1 dir wrt/*
    !O = !ORI.PART(1,'')
    !R = !ORI.PART(2,'')
    !I = !ORI.PART(3,'')


    !N = |0|
    !E = |90|
    !S = |180|
    !W = |270|
    !F = |360|


    IF(|$!ORI| EQ |N|) THEN
    !ANG = ($!N)
    ELSEIF(|$!ORI| EQ |E|) THEN
    !ANG = ($!E)
    ELSEIF(|$!ORI| EQ |S|) THEN
    !ANG = ($!S)
    ELSEIF(|$!ORI| EQ |W|) THEN
    !ANG = ($!W)
    ELSEIF((|$!O| EQ |N|) AND (|$!I| EQ |E|)) THEN
    !ANG = (|$!R|)
    ELSEIF((|$!O| EQ |E|) AND (|$!I| EQ |S|)) THEN
    !ANG = ($!E + $!R)
    ELSEIF((|$!O| EQ |S|) AND (|$!I| EQ |W|)) THEN
    !ANG = ($!S + $!R)
    ELSEIF((|$!O| EQ |W|) AND (|$!I| EQ |N|)) THEN
    !ANG = ($!W + $!R)
    ELSEIF((|$!O| EQ |N|) AND (|$!I| EQ |W|)) THEN
    !ANG = ($!F - $!R)
    ELSEIF((|$!O| EQ |W|) AND (|$!I| EQ |S|)) THEN
    !ANG = ($!W - $!R)
    ELSEIF((|$!O| EQ |S|) AND (|$!I| EQ |E|)) THEN
    !ANG = ($!S - $!R)
    ELSEIF((|$!O| EQ |E|) AND (|$!I| EQ |N|)) THEN
    !ANG = ($!E - $!R)
    ELSE
    ENDIF


    IF (|$!ORI| EQ |U|) THEN
    !ANGLE = ||
    ELSEIF (|$!ORI| EQ |D|) THEN
    !ANGLE = ||
    ELSE
    !ANGLE = |Angle| + | | + |$!ANG|
    ENDIF
    $p $!ANGLE
    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel