{"id":1172,"date":"2016-09-28T20:24:09","date_gmt":"2016-09-28T20:24:09","guid":{"rendered":"http:\/\/wordpress.rose-hulman.edu\/rickert\/?page_id=1172"},"modified":"2017-03-27T18:10:12","modified_gmt":"2017-03-27T18:10:12","slug":"ma331-flyballs-with-tailwinds","status":"publish","type":"page","link":"https:\/\/wordpress.rose-hulman.edu\/rickert\/ma331-flyballs-with-tailwinds\/","title":{"rendered":"MA331 Flyballs with Tailwinds"},"content":{"rendered":"<p>Modified 4PM Friday, Frb. 1 2002<\/p>\n<p>The magnitude of the drag force acting on the ball is F<sub><span style=\"font-size: small\">D<\/span><\/sub> = -k v<span style=\"font-size: small\"><sub>w<\/sub><sup>2<\/sup><\/span>.<br \/>\nThe velocity relative to the ground is <b>v<\/b> = v<sub><span style=\"font-size: small\">x<\/span><\/sub> <b>i<\/b> + v<sub><span style=\"font-size: small\">y<\/span><\/sub> <b>j<\/b>, so the velocity relative to the wind is <b>v<\/b><sub><span style=\"font-size: small\">w<\/span><\/sub> = ( v<sub><span style=\"font-size: small\">x<\/span><\/sub> &#8211; tailwind) <b>i<\/b> + v<sub><span style=\"font-size: small\">y<\/span><\/sub> <b>j<\/b><br \/>\nThe speed relative to the wind is then v<sub><span style=\"font-size: small\">w<\/span><\/sub> = sqrt( ( v<sub><span style=\"font-size: small\">x<\/span><\/sub> &#8211; tailwind)<sup><span style=\"font-size: small\">2<\/span><\/sup> + v<span style=\"font-size: small\"><sub>y<\/sub><sup>2<\/sup><\/span> ).<br \/>\nThe direction, relative to the wind is <b>u<\/b><sub><span style=\"font-size: small\">w<\/span><\/sub> = [( v<sub><span style=\"font-size: small\">x<\/span><\/sub> &#8211; tailwind)\/v<sub><span style=\"font-size: small\">w<\/span><\/sub>] <b>i<\/b> + [ v<sub><span style=\"font-size: small\">y<\/span><\/sub>\/v<sub><span style=\"font-size: small\">w<\/span><\/sub>] <b>j<\/b>.<br \/>\nThe force vector is parallel to <b>v<\/b><sub><span style=\"font-size: small\">w<\/span><\/sub>, so <b>F<\/b><sub><span style=\"font-size: small\">D<\/span><\/sub> = F<sub><span style=\"font-size: small\">D<\/span><\/sub> <b>u<\/b><sub><span style=\"font-size: small\">w<\/span><\/sub> and<br \/>\n<b>F<\/b><sub><span style=\"font-size: small\">D<\/span><\/sub> =-k v<span style=\"font-size: small\"><sub>w<\/sub><sup>2<\/sup><\/span> { [( v<sub><span style=\"font-size: small\">x<\/span><\/sub> &#8211; tailwind)\/v<sub><span style=\"font-size: small\">w<\/span><\/sub>] <b>i<\/b> + [ v<sub><span style=\"font-size: small\">y<\/span><\/sub>\/v<sub><span style=\"font-size: small\">w<\/span><\/sub>] <b>j<\/b> }.<br \/>\nTherefore, <b>F<\/b><sub><span style=\"font-size: small\">D<\/span><\/sub> = [-k ( v<sub><span style=\"font-size: small\">x<\/span><\/sub> &#8211; tailwind)v<sub><span style=\"font-size: small\">w<\/span><\/sub>] <b>i<\/b> + [-k v<sub><span style=\"font-size: small\">y<\/span><\/sub> v<sub><span style=\"font-size: small\">w<\/span><\/sub>] <b>j<\/b>.<\/p>\n<p>Then the acceleration in the <i>x<\/i>-direction satisfies d<i>v<sub><span style=\"font-size: small\">x<\/span><\/sub><\/i> \/ dt = [(-k\/m) ( v<sub><span style=\"font-size: small\">x<\/span><\/sub> &#8211; tailwind) sqrt( ( v<sub><span style=\"font-size: small\">x<\/span><\/sub> &#8211; tailwind)<sup><span style=\"font-size: small\">2<\/span><\/sup> + v<span style=\"font-size: small\"><sub>y<\/sub><sup>2<\/sup><\/span> ) ]<br \/>\nThe acceleration in the <i>y<\/i>-direction satisfies d<i>v<sub><span style=\"font-size: small\">y<\/span><\/sub><\/i> \/ dt = -g &#8211; [(k\/m) v sqrt( ( v<sub><span style=\"font-size: small\">x<\/span><\/sub> &#8211; tailwind)<sup><span style=\"font-size: small\">2<\/span><\/sup> + v<span style=\"font-size: small\"><sub>y<\/sub><sup>2<\/sup><\/span> ) ]<\/p>\n<p>g = 32 ft\/s\/s, k\/m = 32\/140<sup><span style=\"font-size: small\">2<\/span><\/sup>, at sea level. (remember, that k\/m will decrease at higher altitudes)<\/p>\n<p>Thus, the <i>Maple<\/i> code will look something like<br \/>\n<tt><\/tt><\/p>\n<p>v0:= 180;<br \/>\ntheta:= .9;<br \/>\ntailwind:=10;<br \/>\nfly:= dsolve(<br \/>\n{ diff(x(t),t,t) = -32\/140^2 * sqrt( (diff(x(t),t)-tailwind)^2 + diff(y(t),t)^2)* (diff(x(t),t)-tailwind) ,<br \/>\ndiff(xyt),t,t) = -32 -32\/140^2 * sqrt( (diff(x(t),t)-tailwind)^2 + diff(y(t),t)^2) * diff(y(t),t) ,<br \/>\nx(0)=0, y(0)=0, D(x)(0)=v0*cos(theta), D(y)(0)=v0*sin(theta) },<br \/>\n{x(t),y(t)}, numeric, output=listprocedure );<br \/>\nxt:= subs( fly, x(t)) ;<br \/>\nyt:= subs( fly, y(t));<br \/>\nvxt:= subs( fly, diff(x(t),t));<br \/>\nvyt:= subs( fly, diff(y(t),t));<\/p>\n<p><span style=\"font-size: xx-small\"><tt><span style=\"font-family: Courier New\"><br \/>\n<\/span><\/tt> <\/span><\/p>\n<p>You may modify the code in <a href=\"http:\/\/www.rose-hulman.edu\/~rickert\/Classes\/ma331\/flyball2.mws\"><u><span style=\"color: #000080\">f<\/span><\/u><\/a><u><span style=\"color: #000080\">lyball2.mws<\/span><\/u> to study these trajectories.<\/p>\n","protected":false},"excerpt":{"rendered":"<p class=\"excerpt\">Modified 4PM Friday, Frb. 1 2002 The magnitude of the drag force acting on the ball is FD = -k vw2. The velocity relative to the ground is v = vx i + vy j, so the velocity relative to the wind is vw = ( vx &#8211; tailwind) i + vy j The speed relative to the wind is&hellip;<\/p>\n<p class=\"more-link-p\"><a class=\"btn btn-default\" href=\"https:\/\/wordpress.rose-hulman.edu\/rickert\/ma331-flyballs-with-tailwinds\/\">Read more<\/a><\/p>\n","protected":false},"author":812,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1172","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/wordpress.rose-hulman.edu\/rickert\/wp-json\/wp\/v2\/pages\/1172","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wordpress.rose-hulman.edu\/rickert\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/wordpress.rose-hulman.edu\/rickert\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/wordpress.rose-hulman.edu\/rickert\/wp-json\/wp\/v2\/users\/812"}],"replies":[{"embeddable":true,"href":"https:\/\/wordpress.rose-hulman.edu\/rickert\/wp-json\/wp\/v2\/comments?post=1172"}],"version-history":[{"count":6,"href":"https:\/\/wordpress.rose-hulman.edu\/rickert\/wp-json\/wp\/v2\/pages\/1172\/revisions"}],"predecessor-version":[{"id":3674,"href":"https:\/\/wordpress.rose-hulman.edu\/rickert\/wp-json\/wp\/v2\/pages\/1172\/revisions\/3674"}],"wp:attachment":[{"href":"https:\/\/wordpress.rose-hulman.edu\/rickert\/wp-json\/wp\/v2\/media?parent=1172"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}