Question: Problem Plotting DE

Hey guys, I want to plot a differential equation (I'm looking for something a 2d direction field plot) The differential equation is a composition of piecewise functions and a cubic spline. I have to use the subs() call to convert the function h(t) into a numeric (i dont really understand this part but was told to do this). Anyways I need the DEplot error explained to me. Here I show all of the relavent code leading up to the error: with(CurveFitting): with(DEtools): z := t -> 4.713*sin((1/22356)*Pi*t)+.743*sin((1/21600)*Pi*t)+.964*sin((1/22788)*Pi*t) BasinArea := h -> Spline([[-10, 36000000], [-8, 47000000], [-6, 57000000], [-4, 70000000], [-2, 81000000], [0, 89000000], [2, 95000000], [4, 100000000], [6, 105000000], [8, 111000000], [10, 125000000]], h, degree = 3) Sluice := H -> piecewise(0 <>
Please Wait...