Learn R Programming

hydraulics (version 0.2.0)

moody: Creates a Moody diagram with optional manually added points

Description

This function plots a standard Moody diagram, and allows additional points to be added by including arguments Re and f.

Usage

moody(Re = NULL, f = NULL)

Arguments

Re

(optional) numeric vector that contains the Reynolds numbers of points to be manually added

f

(optional) numeric vector (same length as Re) that contains the Darcy-Weisbach friction factors corresponding to the points to be manually added

Value

a Moody diagram, with the optional added (f,Re) points

Examples

Run this code
# NOT RUN {
# Draw canonical Moody diagram
moody()

# Draw Moody diagram plotting two additional points
Re = c(10000, 100000)
f = c(0.04, 0.03)
moody( Re = Re, f = f )

# }

Run the code above in your browser using DataLab