Global Characteristics of the Envelope of Family of Trajectories in Resistive Media

Abstract

In our recent article [1], we discussed the universal geometric characteristics of the envelope of family of trajectories of projectiles projected with the same speeds and different velocities in a vertical plane under the sole influence of gravity; our current investigation is its natural extension. As shown in [1] even for the simplest case where gravity is the only acting external agent literature overlooked reveling the characteristics of the envelope such as its arc-length, the surface area of the enclosed surface and etc. Calculation leading to these has carried out mostly longhand [1]. The current extended version embodies a realistic scenario where the projectiles in addition to gravity encounter linear velocity-dependent media resistance. In order to fulfil objectives similar to [1], we develop two distinct strategies obtaining the analytic equation for the envelope. On one hand, we solve the equations of motion applying traditional longhand approach. On the other hand, we adopt a Computer Algebra System (CAS), e.g. Mathematica [2] [3]. Having these outputs at hand, via mixed-mode calculation—some longhand and some via CAS—we explore its global geometric characteristics such as its arc-length, the surface area of the enclosure. Because of the calculation complexities we could not have achieved our set goals.

Share and Cite:

Sarafian, H. (2020) Global Characteristics of the Envelope of Family of Trajectories in Resistive Media. American Journal of Computational Mathematics, 10, 431-440. doi: 10.4236/ajcm.2020.103024.

1. Introduction, Motivations and Goals

We consider a point-like massive object of mass m projected with initial velocity v 0 with respect to horizon in a vertical plane. Assuming the projectile in addition to gravity encounters linear velocity-dependent resistive force, we depict the quantities of interest in Figure 1. The projectile is a point-like, effects such as size, spin, buoyant force and Magnus effect all are suppressed. These are considered in [4]. The focus and objective of our work are to bypass these details and obtain information about the envelope of a family of trajectories under aforementioned circumstance. Impact of these effects on the trajectories and formulation of the associated envelope is forthcoming.

We adopt Newtonian mechanics strategy to analyze the problem. Accordingly, the net force that is composed of the forces acting on the projectile of mass m is subject to F n e t = m a . Here F n e t = m g + F r e s i s t i v e . It is our intention to consider a scenario where the resistive force is a linear velocity-dependent entity. Therefore, F r e s i s t i v e = m n v ; where n is an index with dimension T−1, its value adjusts the strength of the resistive force. In the Discussion and Conclusion Sections, we made comments concerning scenarios where depending on the need and the interest, other velocity-dependent models may be considered.

2. Trajectory Equation; Traditional Longhand Calculation

Because the projectile traverses a 2D curve we project the master dynamic equation, F n e t along the coordinate axes. Along the x-axis this gives,

d d t v x = n v x , (1)

Integrating Equation (1) with initial condition, v x ( t = 0 ) v 0 x = v 0 cos [ θ ] yields,

v x ( t ) = v 0 x e n t , (2)

Replacing v x = d / d t x ( t ) in Equation (2), and solving the corresponding ODE with initial condition, x ( t = 0 ) = 0 , we arrive at,

x ( t ) = 1 n v 0 x ( 1 e n t ) . (3)

Similarly, projection of the master dynamic equation along the y-axis gives,

d d t v y = g n v y , (4)

Figure 1. At an arbitrary instant on a vertical plane velocity v , gravity pull, m g and media resistance force, n m v are shown.

Integration Equation (4) and applying the corresponding initial condition, v y ( t = 0 ) v 0 y = v 0 sin [ θ ] , gives

v y ( t ) = 1 n [ g + ( g + n v 0 y e n t ) ] , (5)

Similar to previous steps we replace v y = d / d t y ( t ) in Equation (5). Solving the corresponding ODE with initial condition, y ( t = 0 ) = 0 , yields

y ( t ) = 1 n [ g t + 1 n ( g + n v 0 y ) ( 1 e n t ) ] . (6)

Equations (3) and (6) are explicit time-dependent coordinate of the projectile. Since the objective is to formulate time-independent trajectory equation, utilizing Equation (3) first we write, E n t = 1 n x / v 0 x and then solve the latter for t = ( 1 / n ) ln ( 1 n x / v 0 x ) . Substituting the last two expressions in Equation (6) gives the time-independent equation for the trajectory,

y ( x ) = ( g n v 0 x + tan [ θ ] ) x + g n 2 ln ( 1 n x v 0 x ) , (7)

One of the objectives of our investigation is to focus on the geometric characteristics of the problem on hand. Therefore, without to lose the generality we set the values of the initial speed and the gravity acceleration to unity, i.e. v0 = g = 1. This modifies Equation (7),

y ( x ) = ( 1 n cos [ θ ] + tan [ θ ] ) x + 1 n 2 ln ( 1 n cos [ θ ] x ) . (8)

Equation (8) is a parametric, θ-dependent geometric function. It is a non-linear function of n. It is an exact equation; no approximation is used deriving it. In reality the value of n is small. Large values of n hamper the projectile’s movement; small values of n are preferred making the scenario practically interesting. In the next subsection we made comments on n-dependency of Equation (8). For time being in Figure 2 we have shown two plots of Equation (8) for two values of n; n = 0.001, and 0.1.

Figure 2. The solid and the dashed curves are the plots of Equation (8). The solid curve with n = 0.001 is the non-resistive trajectory. The dashed curve is with n = 0.1. The initial projectile angle for both is set at θ = 45°.

According to shown figure as one intuitively would have anticipated the impact of the n is more pronounced beyond the pick point.

Aforementioned procedure is so-called longhand traditional. Utilizing powerful CAS such as Mathematica one may bypass the shown steps short cutting the procedural steps obtaining the same graphic output. Here is what is needed. We write {x(t), y(t)} = {Equation (3), Equation (6)}, and run a one-line command.

Code 1

S h o w [ T a b l e [ P a r a m e t r i c P l o t [ { 1 n v 0 cos [ θ ] ( 1 e n t ) , 1 n ( g t + 1 n ( g + v 0 sin [ θ ] n ) ( 1 e n t ) ) } / . v a l u e s / . θ π 4 , { t , 0 , 1.5 } , P l o t R a n g e { { 0 , 1. } , { 0 , 0.3 } } , P l o t S t y l e B l a c k ] , { n , 0.001 , 0.1 , 0.05 } ] ]

The output is identical to Figure 2, we avoid displaying.

2.1. Trajectory Equation; Computer Algebra System, Mathematica

Similar to objectives outlines in Section 2.1 utilizing a CAS, specifically Mathematica here we show a short code capable of generating the parametric master Equation (8). The code includes a command, DSolve that symbolically solves two ODEs describing the equations of motions.

Code 2

i n i t i a l x = { x [ 0 ] = = 0 , x ' [ 0 ] = = v 0 cos [ θ ] } ; i n i t i a l y = { y [ 0 ] = = 0 , y ' [ 0 ] = = v 0 sin [ θ ] } ; v a l u e s = { v 0 1 , g 1 } ; s o l x = D S o l v e [ { e q x = = 0 , i n i t i a l x } / . v a l u e s , x [ t ] , t ] / / S i m p l i f y ; s o l y = D S o l v e [ { e q y = = 0 , i n i t i a l y } / . v a l u e s , y [ t ] , t ] / / F u l l S i m p l i f y ;

F l a t t e n [ { x [ t ] / . s o l x , y [ t ] / . s o l y } ] ; x y E q = E l i m i n a t e [ F l a t t e n [ { x = = x [ t ] / . s o l x , y = = y [ t ] } ] / . s o l y } ] , t ] / / F u l l S i m p l i f y ; ] ( x y E q 1 , 1 , 2 + x y E q 1 , 2 ) / n 2 / / F u l l S i m p l i f y / / A p a r t ; ( x y E q 1 , 1 , 2 + x y E q 1 , 2 ) / n 2

Interested readers are encouraged to run the code and compare the output vs. Equation (8).

2.2. Trajectory Equation; Computer Algebra System, Mathematica

As we shown in previous two sections, irrespective of the chosen methodology, the final exact trajectory equation is given by Equation (8). Also as commented the n-value controls the media strength. A moderately small n-values provide a practical media allowing the projectile traverses on a trajectory. Contrary to a large n-value that shortens the trajectory’s lifetime mocking its physical features. For reasons cited we consider small n-values. Mathematically specking this allows expanding the log term of Equation (8). Expanding the log function to second order, O(n2) revives the classic trajectory equation [5].

y 2 [ x _ , θ _ ] = ( ( g ( n v 0 cos [ θ ] ) + tan [ θ ] ) x + g n 2 N o r m a l [ S e r i e s [ log [ 1 n v 0 cos [ θ ] x ] , { x , 0 , 2 } ] ] ) / / F u l l S i m p l i f y / / A p a r t (9)

g x 2 S e c [ θ ] 2 2 v 0 2 + x tan [ θ ] , (10)

And expanding the log piece to the third order, O(n3) replaces Equation (8) with,

y 3 [ x _ , θ _ ] = ( ( g ( n v 0 cos [ θ ] ) + tan [ θ ] ) x + g n 2 N o r m a l [ S e r i e s [ log [ 1 n v 0 cos [ θ ] x ] , { x , 0 , 3 } ] ] ) / / F u l l S i m p l i f y (11)

g x 2 ( 2 n x + 3 v 0 cos [ θ ] ) S e c [ θ ] 3 6 v 0 3 + x tan [ θ ] (12)

Plots of Equation (8) and (11) for an index value of n = 0.1 shows indistinguishable trajectories. With this observation instead of applying Equation (8) we utilize its equivalent, i.e. linearized n-dependent format, Equation (12) to developing the envelope equation.

3. The Envelope

From this point on we set n = 0.1 and perform the rest of the calculation utilizing this value only. To generate the analytic equation for the envelope as outlined in [1] we follow the standard procedure. One needs to set the slope of the trajectory equation, i.e. Equation (12) w/parameter, θ, zero, then eliminate the parameter, θ between the trajectory Equation (12) and the latter. This is the correct recipe however it is tedious and cumbersome. As we shown in detail [1] by introducing a variable such as ξ = tan[θ] the procedure simplifies. Applying the n-dependent linearized format of the trajectory, i.e. Equation (12), we write,

x ξ 1 6 v 0 3 g x 2 ( 1 + ξ 2 ) 3 / 2 ( 2 n x + 3 v 0 1 + ξ 2 ) (13)

We calculate its slope and set it zero, and search its roots,

Code 3

s l o p e ξ = D [ e q [ x , ξ ] , { ξ , 1 } ] ; s o l ξ 0 = S o l v e [ s l o p e ξ = = 0 , ξ ] ;

Solution of this equation is, ξ = ξ(x). After substituting the latter in Equation (12) we arrive at the envelope equation. As one may imagine the final expression is complicated and long. We avoid cluttering the manuscript by not showing its explicit output. Interested readers may run the given code to reveal the explicit envelope equation. Here is the needed line,

Code 4

e q [ x , ξ ] / . s o l ξ 0 4 / . v a l u e s / . n 0.1 ;

To hone at our objective, we show its corresponding curve, see Figure 3.

By comparing the solid and the dashed black curves one may deduce a few facts. The dashed black curve is what we reported earlier [1]. Nonetheless, we plot this curve utilizing our new n-dependent envelope equation, Equation (12). It is gratifying to observe that this is identical to [1] noting the fact that [1] is based on calculation for a non-resistive media. As anticipated the dashed curve has a higher height than the solid one. This is because the former is for non-resistive media where the solid is for a resistive media. Other interesting information such as the values of maximum heights, maximum abscissa and etc. directly may be read off the graph. More on this on following subsection.

3.1. Corollary Calculations

Having the equation of the envelope on hand guided by [1] one may purse similar calculation conducive to some universal information about the envelope. For instance, for a chosen n-value e.g. n = 0.001 and 0.1 applying Mathematica [3] we search for roots of (Equation of envelope) = 0. As pointed previously the envelope equation is quite lengthy and complicated. By the same token the latter equation is complicated as well. We avoid displaying it, nonetheless we report its numeric value. For two different values of n-index applying Mathematica [3] we arrive at MaxAbscissas: 0.999059 for n = 0.001, 0.920814 for n = 0.1. These high precision numeric values match the read offs of Figure 3.

3.2. Arc-Length of the Envelope

The arc-length of the envelope in principle easily can be calculated. This is subject to l = 2 0 x a b s c i s s a max 1 + [ d d x y ( x ) ] 2 d x , here x a b s c i s s a is the maximum value of the abscissa; previous section includes the value. As it was pointed for a comprehensive understanding, we focus on one specific case, n = 0.1. Bear in mind also that we have formulated the entire analysis symbolically as a function n. Meaning, we may produce the on

f i t x = 0.99548 + 0.06049 x + 0.46388 x 2 (14)

Figure 3. The solid black curve is the envelope of a family of trajectories with resistive index of n = 0.1. The dashed black curve is the non-resistive envelope for n = 0.001. The blue parabolas are the family of projectiles projected with the same initial speeds and various velocities, the green curves are the family with same speeds as the blue ones.

going computation for any desired n. In practice evaluation of the arc-length, ℓ, because of complicated expression for y(x) is CPU expensive; my laptop with a quad processor runs forever! To go around this issue utilizing y(x) first we form its symbolic slope, y'(x), then we tabulate paired data points, { x , 1 + y ( x ) 2 } for a handful of x's. These pairs are shown with dots in Figure 4. Then by applying Mathematica Fit command we fit the data with a second order polynomial. The outcome of the proposed process is depicted in Figure 4 as well. As shown the fitted function is “perfect.” Concluding that it is much efficient to replace the integrand with the fitted function.

Integrating Equation (14) over the given limits yields the arc-length of the envelope.

l = 0.001 0.920814 f i t x d x = 1.06204 (15)

If we could extend the envelope into the second quadrant the arc-length would be twice as long; 2.124. The arc-length of non-resistive media as reported [1], is 2 + arcsinh [ 1 ] = 2.29 , the former falls short by 7.2%. According to Figure 3 this is what one would have anticipated. Meaning, the trajectory of the projectile in the resistive media indexing n = 0.1 has a shorter abscissa and is lower in height vs. the one for non-resistive media; therefore, its associated arc-length should be shorter as well. As in more than one occasion we pointed out our calculation may be repeated for any desired n-value.

3.3. Surface Area of the Enclosed Surface by the Envelope

The surface area of the enclosed surface is subject to s = 0 x a b s c i s s a max y ( x ) d x . As in the previous case substituting y(x) i.e. the equation the envelope directly in this equation makes the computation CPU expensive. Therefore, we follow the same successful technical procedure of the previous subsection. First utilizing equation of the envelope, we generate a set of data pairs, { x , y ( x ) } ; these are depicted with dots in Figure 5. Then we fit the data with an appropriate polynomial function. This is shown with the solid curve in the same Figure. Then we

Figure 4. Dots are the paired coordinates, { x , 1 + y ( x ) 2 } . The solid curve is the fitted, fitx, function.

Figure 5. Dots are the paired coordinates of the envelope, { x , y ( x ) } . The solid curve is the fitted x-dependent 2nd order quadratic function.

swap the envelope equation with the fitted polynomial. Equation (15) is the fitted function.

f i t x y = 0.4703 + 0.0072 x 0.5615 x 2 (16)

Integrating the fitted function, fitxy, yields the surface area enclosed with the envelope.

s = 0.001 0.92 f i t x y d x = 0.28953 (17)

By doubling its value, we get 0.579. This is 1.5% less than the reported value in [1]. One look at the plotted envelops in Figure 3 justifies the shortcoming. Descriptively speaking we may use the same reasons outlined in the arc-length computation subsection.

4. Conclusions and Discussions

In this investigating research article, we pushed the boundaries of our previous work [1] and publications related to the envelope of projectiles in resistive velocity-dependent media. Although the concept of the envelope for a family of trajectories for projectiles thrown in a vertical plane under the sole action of gravity is familiar, even for such a familiar scenario we report its unknown fresh characteristics [1]. Hence, it is almost inevitable not to extend the analysis for practical situations where in addition to gravity the projectile encounters velocity-dependent resistive media, e.g. movement of microscale bacteria in a viscose media falls in this category.

We introduced two distinct calculational methodologies. For the sake of establishing the basis, first, we produce a set of familiar information, e.g. Equations (3), (6). Then utilizing CAS, specifically Mathematica [3] symbolically we generated the same information and beyond, Equation (8). Utilizing the latter approach, we were able to solve symbolically complicated, some with output as lengthy as a page, equations identifying the velocity-dependent envelope encompassing a family of associated trajectories. As we pointed out in the Abstract without CAS we could not have solved this segment of the project. This is a fresh unreported contribution. Having the equation of the envelope on hand inspired and guided by [1] we explored its geometric global characteristics such as its arc-length and surface area. In doing so because of the CPU expensive computation we introduced a numeric approach fulfilling our goal. The introduced method may be used for similar scenarios.

The author acknowledges despite thorough web-based search ended up empty handed identifying published article(s) addressing the envelope of trajectories in velocity-dependent viscose media.

For interested readers we are suggesting two exercises: computation of the surface area of the revolution of the envelope about its vertical axis, i.e. the surface area of the paraboloid, and its associated volume. Our article embodies sufficient coding information that guided with the computed results [1] these can easily be completed.

For non-microscale objects such as baseball, velocity-dependent resistive forces customarily are formulated as speed-squared forces [4]. As an investigating project based on information provided in our articles [1] [4], one might be interested in pursuing similar analysis. Interested readers on graphics applications of Mathematica will find [6] resourceful.

Acknowledgements

The author gratefully acknowledges the support of the John T. and Paige S. Smith professorship funds completing this project.

Conflicts of Interest

The author declares no conflicts of interest regarding the publication of this paper.

References

[1] Sarafian, H. (2020) Envelope of Family of Angled Projectiles and Its Universal Geometric Characteristics. American Journal of Computational Mathematics, 10, 425-430.
https://doi.org/10.4236/ajcm.2020.103023
[2] Wolfram, S. (1996) Mathematica Book. 3rd Edition, Cambridge University Press, Cambridge.
[3] Mathematica (2020) https://www.wolfram.com/mathematica/V12.1
[4] Sarafian, H. (2015) Impact of the Drag Force and the Magnus Effect on the Trajectory of a Baseball. World Journal of Mechanics, 5, 49-58.
https://doi.org/10.4236/wjm.2015.54006
[5] Halliday, D., Resnick, R. and Walker, J. (2013) Fundamentals of Physics Extended. 10th Ed, John Wiley and Sons, NY.
[6] Sarafian, H. (2019) Mathematica Graphics Examples. 2nd Edition, Scientific Research Publishing.

Copyright © 2024 by authors and Scientific Research Publishing Inc.

Creative Commons License

This work and the related PDF file are licensed under a Creative Commons Attribution 4.0 International License.