• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    AutoCAD Civil 3D

    Reply
    Active Member
    Posts: 8
    Registered: ‎03-16-2005
    Accepted Solution

    Need an expression to round Pipe Slopes

    275 Views, 12 Replies
    10-08-2012 08:43 AM

    We Need an expression to round Pipe Slopes to the nearest 0.5% slope.

    We were working with:

    ROUND(({Pipe Slope}/0.5))*0.5

    but it only returns 0.00,

    what's missing? THanks 

    Please use plain text.
    *Expert Elite*
    Posts: 1,745
    Registered: ‎12-18-2002

    Re: Need an expression to round Pipe Slopes

    10-08-2012 10:37 AM in reply to: tgaf

    I've done that with slopes on Section Views. I made two Expressions:

     

    First, to find those values that should round to no decimal places:

     

    IF(ABS({Grade between Point 1 and Point 2})-ABS(TRUNC({Grade between Point 1 and Point 2}))<0.25|ABS({Grade between Point 1 and Point 2})-ABS(TRUNC({Grade between Point 1 and Point 2}))>=0.75,1/120,0)

     

    Note the | symbol between <0.25 and the next ABS means OR.

     

    Second, to find those values that should round to .5:

     

    IF(ABS({Grade between Point 1 and Point 2})-ABS(TRUNC({Grade between Point 1 and Point 2}))>=0.25&ABS({Grade between Point 1 and Point 2})-ABS(TRUNC({Grade between Point 1 and Point 2}))<0.75,1/120,0)

     

    You might need to play with the 1/120 text height to get a height that works for you.

     

    I assume you know how to make your label style use these. If not, let me know.

     

    Tim

     

     

     

     

     

    Tim Corey, Owner
    Delta Engineering Systems
    Redding, CA
    Autodesk Authorized Value-Added Reseller
    Please use plain text.
    Active Member
    Posts: 8
    Registered: ‎03-16-2005

    Re: Need an expression to round Pipe Slopes

    10-08-2012 11:45 AM in reply to: tcorey

    Thanks for the quick response, I'm trying to add the expression to a pipe label style, need to round out the pipe's slope. Not sure how the "Grade between Point 1 and Point 2" plays out.

    Why does picking the "Pipe Slope" function not play out?

    THanks,

    Please use plain text.
    *Expert Elite*
    Posts: 1,745
    Registered: ‎12-18-2002

    Re: Need an expression to round Pipe Slopes

    10-08-2012 01:28 PM in reply to: tgaf

    Look in the attached drawing. Find on Settings tab of Toolspace: Pipes --> Label Styles --> Plan/Profile --> Expressions.

     

    These are referenced by the label style called Pipe slope - percent - rounded to .5. Apply that to your pipes and they will round to either no decimal places or .5.

     

    Best regards,

     

    Tim

     

    Tim Corey, Owner
    Delta Engineering Systems
    Redding, CA
    Autodesk Authorized Value-Added Reseller
    Please use plain text.
    Active Member
    Posts: 8
    Registered: ‎03-16-2005

    Re: Need an expression to round Pipe Slopes

    10-08-2012 02:39 PM in reply to: tcorey

    WOw, that's interesting, thanks , but unfortunately I'm dealing with 2012 and that percent function doesn't exist in the 2012 release, or I may be missing something. Thanks for the file though, just another reason to upgrade.

    Please use plain text.
    *Expert Elite*
    Posts: 1,745
    Registered: ‎12-18-2002

    Re: Need an expression to round Pipe Slopes

    10-08-2012 03:23 PM in reply to: tgaf

    Here's a 2012 version.

     

     

    Tim Corey, Owner
    Delta Engineering Systems
    Redding, CA
    Autodesk Authorized Value-Added Reseller
    Please use plain text.
    Active Member
    Posts: 8
    Registered: ‎03-16-2005

    Re: Need an expression to round Pipe Slopes

    10-09-2012 07:10 AM in reply to: tcorey

    Thanks again for the 2012 version, but i think I'm not explaining myself correctly, I need to be able to round the slope percentage in the lable so that if the slope of the pipe is 3.42 as an example it will round down to 3.40, or if it is 7.47 it will round up to 7.50. The options of round normal , truncate and round up in the component editor don't seem to do the trick.

    Thanks for your effort.

    Please use plain text.
    *Expert Elite*
    Posts: 1,745
    Registered: ‎12-18-2002

    Re: Need an expression to round Pipe Slopes

    10-09-2012 09:25 AM in reply to: tgaf

    Sounds to me like you're rounding to the nearest tenth, which Civil 3D does without expressions. Your original post stated you want to round to the nearest .5, which is what the expressions I built do.

     

    Maybe you can post a drawing with detailed description of what you want and that Civil 3D doesn't appear to be doing for you.

     

    Tim

    Tim Corey, Owner
    Delta Engineering Systems
    Redding, CA
    Autodesk Authorized Value-Added Reseller
    Please use plain text.
    Active Member
    Posts: 8
    Registered: ‎03-16-2005

    Re: Need an expression to round Pipe Slopes

    10-09-2012 10:58 AM in reply to: tcorey

    okay, here's a dwg with a few pipe examples,

    so basically to illustrate, if the slope is 4.54% so to say, we need it to read 4.55%,

    if its let's say -3.32%, then we need it to read -3.30%

    if 5.58%, we need it to read 5.60%

    can't seem to get it to work with the given rounding methods

    again, thanks for your efforts

    Please use plain text.
    *Expert Elite*
    Posts: 2,373
    Registered: ‎10-13-2005

    Re: Need an expression to round Pipe Slopes

    10-09-2012 08:54 PM in reply to: tgaf

    Sounds like you are looking to round to the nearest tenth, but show two digits. This expresion should do it:

     

    (ROUND({Pipe Slope}*10))/10

     

    If you want the nearest 0.5% then this expression should work:

     

    (ROUND({Pipe Slope}*2))/2

     

    Christopher

    http://blog.civil3dreminders.com/

    Civil Reminders
    http://blog.civil3dreminders.com/
    http://www.CivilReminders.com/
    Please use plain text.