Results 1 to 5 of 5

Thread: A Simple Manning's Circular Pipe Calculator

  1. #1
    Wish List Administration
    Join Date
    2011-08
    Posts
    4,581

    Default A Simple Manning's Circular Pipe Calculator

    Summary: I'd like to see a simple pipe calculator that works as a dialog box where you can quickly calc pipe capacity for a given pipe size, slope, and n value; or pipe size for a given Q, slope, and n.

    Description: I'd like to see a simple pipe calculator that works as a dialog box where you can quickly calc pipe capacity for a given pipe size, slope, and n value; or pipe size for a given Q, slope, and n.

    Product and Feature: AutoCAD Civil 3D - Pipe Network

    Submitted By: Jim Cunningham on 08/06/2014


  2. #2
    Wish List Administration
    Join Date
    2011-08
    Posts
    4,581

    Exclamation Re: A Simple Manning's Circular Pipe Calculator

    A Simple Manning's Circular Pipe Calculator

    Summary: I'd like to see a simple pipe calculator that works as a dialog box where you can quickly calc pipe capacity for a given pipe size, slope, and n value; or pipe size for a given Q, slope, and n.

    Description: Sometimes you just need a quick calc. Rather than using a third party Mannings calculator, it would be nice to have a good one that comes standard with Civil3D.

    Product and Feature: AutoCAD Civil 3D - Pipe Network

    Submitted By: Jim Cunningham on 08/06/2014


  3. #3
    Member
    Join Date
    2005-10
    Location
    Allentown PA
    Posts
    14

    Default Re: A Simple Manning's Circular Pipe Calculator

    We do have the hydraflow express extension that calcs all sorts of sections including pipes. Obviously, we have the Storm Sewers and SSA analysis apps, but they are external applications.

    What would be awesome, and i think you are inferring this, is to have a pipe calc button several places in civil 3d; like the pipe properties Dialog box, as a column called something like "pipe capacity" in the prospector preview of a pipe collection, etc.

  4. #4
    Member
    Join Date
    2000-12
    Posts
    33

    Default Re: A Simple Manning's Circular Pipe Calculator

    I haven't gotten into setting up pipe networks yet and SSA and hydroflow seems too complicated for a quick number in a preliminary design. It's much easier to go to an on-line third party calculator (there are many free ones). Land desktop used to have a decent one. I'd like to see it refined and brought back.

  5. #5
    All AUGI, all the time
    Join Date
    2003-07
    Posts
    561

    Default Re: A Simple Manning's Circular Pipe Calculator

    Check this out check supplied as is with no warranty of its accuracy, draw a circle at true size or a pline shape with a top horizontal surface, does not need to be closed. Note this for metric shapes

    Code:
    ; channel flow based on mannings value and a horizontal pline
    (defun mannpipe ( / vlent ent objlen objarea vel r slope Qcap)
    (princ "this is in lisp")
    (vl-load-com)
    (setq ent (entsel "\npick pline or circle"))
    (setq vlent (vlax-ename->vla-object (car ent)))
    
    ;; check to see if the object selected is a polyline or circle
    (if (= (vla-get-objectname vlent) "AcDbPolyline")
    (PROGN
    (setq objLEN (vla-get-LENGTH vlent))
    (setq objAREA (vla-get-AREA vlent))
    )
    )
    
    (if (= (vla-get-objectname vlent) "AcDbCircle")
          (PROGN
          (setq RAD (vla-get-Radius vlent))
          (setq objarea (vla-get-area vlent))
          (setq objlen (vla-get-Circumference vlent))
          )
    )
          (setq R (/ objarea objlen))
          (setq mannings (getreal "\nEnter mannings value"))
          (setq slope (getreal "\nEnter slope in % "))
          (setq p1 (/ 2.0 3.0))
          (setq vel (/ (* (expt r p1) (sqrt (/ slope 100.0))) mannings  )) ;mannings formula
          (setq Qcap (* 1000.0 (* Vel objarea))) ; lt/s
    
    (if (= Qcap nil)
      (princ "\nSelect again not a pline or Circle")
    )
    
    (PRINC (strcat "\Flow " (rtos Qcap 2 0) " l/s Velocity " (rtos Vel  2 2) " m/s"))
    
    )
    ; end of defun
    
    (mannpipe)
    
    (princ)

Similar Threads

  1. 2011: Pipe-in-pipe, containment pipe, double-wall pipe ?
    By Super T in forum Revit MEP - General
    Replies: 4
    Last Post: 2019-08-15, 12:51 PM
  2. Replies: 3
    Last Post: 2015-12-05, 08:19 PM
  3. simple lables on simple entities
    By Maverick91 in forum AutoCAD Civil 3D - General
    Replies: 13
    Last Post: 2010-09-22, 09:38 PM
  4. AutoCAD 2008 Visual Styles - Show circular structure as circular not multi sided
    By robert.scragg in forum AutoCAD 3D (2007 and above)
    Replies: 8
    Last Post: 2008-07-14, 02:38 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •