An outline of all sections included in this SRS is recorded here for easy reference.
This section records information for easy reference.
The unit system used throughout is SI (Système International d'Unités). In addition to the basic units, several derived units are also used. For each unit, the Table of Units lists the symbol, a description, and the SI name.
Symbol | Description | SI Name |
---|---|---|
kg | mass | kilogram |
m | length | metre |
N | force | newton |
rad | angle | radian |
s | time | second |
The symbols used in this document are summarized in the Table of Symbols along with their units. Throughout the document, symbols in bold will represent vectors, and scalars otherwise. The symbols are listed in alphabetical order. For vector quantities, the units shown are for each component of the vector.
Symbol | Description | Units |
---|---|---|
ax1 | Horizontal acceleration of the first object | \(\frac{\text{m}}{\text{s}^{2}}\) |
ax2 | Horizontal acceleration of the second object | \(\frac{\text{m}}{\text{s}^{2}}\) |
ay1 | Vertical acceleration of the first object | \(\frac{\text{m}}{\text{s}^{2}}\) |
ay2 | Vertical acceleration of the second object | \(\frac{\text{m}}{\text{s}^{2}}\) |
a(t) | Acceleration | \(\frac{\text{m}}{\text{s}^{2}}\) |
F | Force | N |
g | Magnitude of gravitational acceleration | \(\frac{\text{m}}{\text{s}^{2}}\) |
g | Gravitational acceleration | \(\frac{\text{m}}{\text{s}^{2}}\) |
î | Unit vector | -- |
L1 | Length of the first rod | m |
L2 | Length of the second rod | m |
m | Mass | kg |
m1 | Mass of the first object | kg |
m2 | Mass of the second object | kg |
px1 | Horizontal position of the first object | m |
px2 | Horizontal position of the second object | m |
py1 | Vertical position of the first object | m |
py2 | Vertical position of the second object | m |
p(t) | Position | m |
T | Tension | N |
T1 | Tension of the first object | N |
T2 | Tension of the second object | N |
t | Time | s |
theta | Dependent variables | rad |
vx1 | Horizontal velocity of the first object | \(\frac{\text{m}}{\text{s}}\) |
vx2 | Horizontal velocity of the second object | \(\frac{\text{m}}{\text{s}}\) |
vy1 | Vertical velocity of the first object | \(\frac{\text{m}}{\text{s}}\) |
vy2 | Vertical velocity of the second object | \(\frac{\text{m}}{\text{s}}\) |
v(t) | Velocity | \(\frac{\text{m}}{\text{s}}\) |
w1 | Angular velocity of the first object | \(\frac{\text{rad}}{\text{s}}\) |
w2 | Angular velocity of the second object | \(\frac{\text{rad}}{\text{s}}\) |
α1 | Angular acceleration of the first object | \(\frac{\text{rad}}{\text{s}^{2}}\) |
α2 | Angular acceleration of the second object | \(\frac{\text{rad}}{\text{s}^{2}}\) |
θ1 | Angle of the first rod | rad |
θ2 | Angle of the second rod | rad |
π | Ratio of circumference to diameter for any circle | -- |
Abbreviation | Full Form |
---|---|
2D | Two-Dimensional |
A | Assumption |
DD | Data Definition |
DblPend | Double Pendulum |
GD | General Definition |
GS | Goal Statement |
IM | Instance Model |
PS | Physical System Description |
R | Requirement |
RefBy | Referenced by |
Refname | Reference Name |
SRS | Software Requirements Specification |
TM | Theoretical Model |
Uncert. | Typical Uncertainty |
A pendulum consists of mass attached to the end of a rod and its moving curve is highly sensitive to initial conditions. Therefore, it is useful to have a program to simulate the motion of the pendulum to exhibit its chaotic characteristics. The document describes the program called Double Pendulum , which is based on the original, manually created version of Double Pendulum.
The following section provides an overview of the Software Requirements Specification (SRS) for Double Pendulum. This section explains the purpose of this document, the scope of the requirements, the characteristics of the intended reader, and the organization of the document.
The primary purpose of this document is to record the requirements of DblPend. Goals, assumptions, theoretical models, definitions, and other model derivation information are specified, allowing the reader to fully understand and verify the purpose and scientific basis of DblPend. With the exception of system constraints, this SRS will remain abstract, describing what problem is being solved, but not how to solve it.
This document will be used as a starting point for subsequent development phases, including writing the design specification and the software verification and validation plan. The design document will show how the requirements are to be realized, including decisions on the numerical algorithms and programming environment. The verification and validation plan will show the steps that will be used to increase confidence in the software documentation and the implementation. Although the SRS fits in a series of documents that follow the so-called waterfall model, the actual development process is not constrained in any way. Even when the waterfall model is not followed, as Parnas and Clements point out parnasClements1986, the most logical way to present the documentation is still to "fake" a rational design process.
The scope of the requirements includes the analysis of a two-dimensional (2D) pendulum motion problem with various initial conditions.
Reviewers of this documentation should have an understanding of undergraduate level 2 physics, undergraduate level 1 calculus, and ordinary differential equations. The users of DblPend can have a lower level of expertise, as explained in Sec:User Characteristics.
The organization of this document follows the template for an SRS for scientific computing software proposed by koothoor2013, smithLai2005, smithEtAl2007, and smithKoothoor2016. The presentation follows the standard pattern of presenting goals, theories, definitions, and assumptions. For readers that would like a more bottom up approach, they can start reading the instance models and trace back to find any additional information they require.
The goal statements are refined to the theoretical models and the theoretical models to the instance models.
This section provides general information about the system. It identifies the interfaces between the system and its environment, describes the user characteristics, and lists the system constraints.
Fig:sysCtxDiag shows the system context. A circle represents an entity external to the software, the user in this case. A rectangle represents the software system itself (DblPend). Arrows are used to show the data flow between the system and its environment.
The interaction between the product and the user is through an application programming interface. The responsibilities of the user and the system are as follows:
The end user of DblPend should have an understanding of high school physics, high school calculus and ordinary differential equations.
There are no system constraints.
This section first presents the problem description, which gives a high-level view of the problem to be solved. This is followed by the solution characteristics specification, which presents the assumptions, theories, and definitions that are used.
A system is needed to predict the motion of a double pendulum.
This subsection provides a list of terms that are used in the subsequent sections and their meaning, with the purpose of reducing ambiguity and making it easier to correctly understand the requirements.
The physical system of DblPend, as shown in Fig:dblpend, includes the following elements:
PS1: The first rod (with length of the first rod L1).
PS2: The second rod (with length of the second rod L2).
PS3: The first object.
PS4: The second object.
Given the masses, length of the rods, initial angle of the masses and the gravitational constant, the goal statement is:
The instance models that govern DblPend are presented in the Instance Model Section. The information to understand the meaning of the instance models and their derivation is also presented, so that the instance models can be verified.
This section simplifies the original problem and helps in developing the theoretical models by filling in the missing information for the physical system. The assumptions refine the scope by providing more detail.
This section focuses on the general equations and laws that DblPend is based on.
Refname | TM:acceleration |
---|---|
Label | Acceleration |
Equation | \[\symbf{a}\text{(}t\text{)}=\frac{\,d\symbf{v}\text{(}t\text{)}}{\,dt}\] |
Description | |
Source | |
RefBy |
Refname | TM:velocity |
---|---|
Label | Velocity |
Equation | \[\symbf{v}\text{(}t\text{)}=\frac{\,d\symbf{p}\text{(}t\text{)}}{\,dt}\] |
Description | |
Source | |
RefBy |
Refname | TM:NewtonSecLawMot |
---|---|
Label | Newton's second law of motion |
Equation | \[\symbf{F}=m\,\symbf{a}\text{(}t\text{)}\] |
Description | |
Notes |
The net force F on a body is proportional to the acceleration a(t) of the body, where m denotes the mass of the body as the constant of proportionality. |
Source | -- |
RefBy |
This section collects the laws and equations that will be used to build the instance models.
Refname | GD:velocityX1 |
---|---|
Label |
The x-component of velocity of the first object |
Units |
\(\frac{\text{m}}{\text{s}}\) |
Equation | \[{v_{\text{x}1}}={w_{1}}\,{L_{1}}\,\cos\left({θ_{1}}\right)\] |
Description | |
Source | -- |
RefBy |
At a given point in time, velocity is defined in DD:positionGDD
\[\symbf{v}\text{(}t\text{)}=\frac{\,d\symbf{p}\text{(}t\text{)}}{\,dt}\]We also know the horizontal position that is defined in DD:positionXDD1
\[{p_{\text{x}1}}={L_{1}}\,\sin\left({θ_{1}}\right)\]Applying this,
\[{v_{\text{x}1}}=\frac{\,d{L_{1}}\,\sin\left({θ_{1}}\right)}{\,dt}\]L1 is constant with respect to time, so
\[{v_{\text{x}1}}={L_{1}}\,\frac{\,d\sin\left({θ_{1}}\right)}{\,dt}\]Therefore, using the chain rule,
\[{v_{\text{x}1}}={w_{1}}\,{L_{1}}\,\cos\left({θ_{1}}\right)\]Refname | GD:velocityY1 |
---|---|
Label |
The y-component of velocity of the first object |
Units |
\(\frac{\text{m}}{\text{s}}\) |
Equation | \[{v_{\text{y}1}}={w_{1}}\,{L_{1}}\,\sin\left({θ_{1}}\right)\] |
Description | |
Source | -- |
RefBy |
At a given point in time, velocity is defined in DD:positionGDD
\[\symbf{v}\text{(}t\text{)}=\frac{\,d\symbf{p}\text{(}t\text{)}}{\,dt}\]We also know the vertical position that is defined in DD:positionYDD1
\[{p_{\text{y}1}}=-{L_{1}}\,\cos\left({θ_{1}}\right)\]Applying this,
\[{v_{\text{y}1}}=-\left(\frac{\,d{L_{1}}\,\cos\left({θ_{1}}\right)}{\,dt}\right)\]L1 is constant with respect to time, so
\[{v_{\text{y}1}}=-{L_{1}}\,\frac{\,d\cos\left({θ_{1}}\right)}{\,dt}\]Therefore, using the chain rule,
\[{v_{\text{y}1}}={w_{1}}\,{L_{1}}\,\sin\left({θ_{1}}\right)\]Refname | GD:velocityX2 |
---|---|
Label |
The x-component of velocity of the second object |
Units |
\(\frac{\text{m}}{\text{s}}\) |
Equation | \[{v_{\text{x}2}}={v_{\text{x}1}}+{w_{2}}\,{L_{2}}\,\cos\left({θ_{2}}\right)\] |
Description | |
Source | -- |
RefBy |
At a given point in time, velocity is defined in DD:positionGDD
\[\symbf{v}\text{(}t\text{)}=\frac{\,d\symbf{p}\text{(}t\text{)}}{\,dt}\]We also know the horizontal position that is defined in DD:positionXDD2
\[{p_{\text{x}2}}={p_{\text{x}1}}+{L_{2}}\,\sin\left({θ_{2}}\right)\]Applying this,
\[{v_{\text{x}2}}=\frac{\,d{p_{\text{x}1}}+{L_{2}}\,\sin\left({θ_{2}}\right)}{\,dt}\]L1 is constant with respect to time, so
\[{v_{\text{x}2}}={v_{\text{x}1}}+{w_{2}}\,{L_{2}}\,\cos\left({θ_{2}}\right)\]Refname | GD:velocityY2 |
---|---|
Label |
The y-component of velocity of the second object |
Units |
\(\frac{\text{m}}{\text{s}}\) |
Equation | \[{v_{\text{y}2}}={v_{\text{y}1}}+{w_{2}}\,{L_{2}}\,\sin\left({θ_{2}}\right)\] |
Description | |
Source | -- |
RefBy |
At a given point in time, velocity is defined in DD:positionGDD
\[\symbf{v}\text{(}t\text{)}=\frac{\,d\symbf{p}\text{(}t\text{)}}{\,dt}\]We also know the vertical position that is defined in DD:positionYDD2
\[{p_{\text{y}2}}={p_{\text{y}1}}-{L_{2}}\,\cos\left({θ_{2}}\right)\]Applying this,
\[{v_{\text{y}2}}=-\left(\frac{\,d{p_{\text{y}1}}-{L_{2}}\,\cos\left({θ_{2}}\right)}{\,dt}\right)\]Therefore, using the chain rule,
\[{v_{\text{y}2}}={v_{\text{y}1}}+{w_{2}}\,{L_{2}}\,\sin\left({θ_{2}}\right)\]Refname | GD:accelerationX1 |
---|---|
Label |
The x-component of acceleration of the first object |
Units |
\(\frac{\text{m}}{\text{s}^{2}}\) |
Equation | \[{a_{\text{x}1}}=-{w_{1}}^{2}\,{L_{1}}\,\sin\left({θ_{1}}\right)+{α_{1}}\,{L_{1}}\,\cos\left({θ_{1}}\right)\] |
Description | |
Source | -- |
RefBy |
Our acceleration is:
\[\symbf{a}\text{(}t\text{)}=\frac{\,d\symbf{v}\text{(}t\text{)}}{\,dt}\]Earlier, we found the horizontal velocity to be
\[{v_{\text{x}1}}={w_{1}}\,{L_{1}}\,\cos\left({θ_{1}}\right)\]Applying this to our equation for acceleration
\[{a_{\text{x}1}}=\frac{\,d{w_{1}}\,{L_{1}}\,\cos\left({θ_{1}}\right)}{\,dt}\]By the product and chain rules, we find
\[{a_{\text{x}1}}=\frac{\,d{w_{1}}}{\,dt}\,{L_{1}}\,\cos\left({θ_{1}}\right)-{w_{1}}\,{L_{1}}\,\sin\left({θ_{1}}\right)\,\frac{\,d{θ_{1}}}{\,dt}\]Simplifying,
\[{a_{\text{x}1}}=-{w_{1}}^{2}\,{L_{1}}\,\sin\left({θ_{1}}\right)+{α_{1}}\,{L_{1}}\,\cos\left({θ_{1}}\right)\]Refname | GD:accelerationY1 |
---|---|
Label |
The y-component of acceleration of the first object |
Units |
\(\frac{\text{m}}{\text{s}^{2}}\) |
Equation | \[{a_{\text{y}1}}={w_{1}}^{2}\,{L_{1}}\,\cos\left({θ_{1}}\right)+{α_{1}}\,{L_{1}}\,\sin\left({θ_{1}}\right)\] |
Description | |
Source | -- |
RefBy |
Our acceleration is:
\[\symbf{a}\text{(}t\text{)}=\frac{\,d\symbf{v}\text{(}t\text{)}}{\,dt}\]Earlier, we found the vertical velocity to be
\[{v_{\text{y}1}}={w_{1}}\,{L_{1}}\,\sin\left({θ_{1}}\right)\]Applying this to our equation for acceleration
\[{a_{\text{y}1}}=\frac{\,d{w_{1}}\,{L_{1}}\,\sin\left({θ_{1}}\right)}{\,dt}\]By the product and chain rules, we find
\[{a_{\text{y}1}}=\frac{\,d{w_{1}}}{\,dt}\,{L_{1}}\,\sin\left({θ_{1}}\right)+{w_{1}}\,{L_{1}}\,\cos\left({θ_{1}}\right)\,\frac{\,d{θ_{1}}}{\,dt}\]Simplifying,
\[{a_{\text{y}1}}={w_{1}}^{2}\,{L_{1}}\,\cos\left({θ_{1}}\right)+{α_{1}}\,{L_{1}}\,\sin\left({θ_{1}}\right)\]Refname | GD:accelerationX2 |
---|---|
Label |
The x-component of acceleration of the second object |
Units |
\(\frac{\text{m}}{\text{s}^{2}}\) |
Equation | \[{a_{\text{x}2}}={a_{\text{x}1}}-{w_{2}}^{2}\,{L_{2}}\,\sin\left({θ_{2}}\right)+{α_{2}}\,{L_{2}}\,\cos\left({θ_{2}}\right)\] |
Description | |
Source | -- |
RefBy |
Our acceleration is:
\[\symbf{a}\text{(}t\text{)}=\frac{\,d\symbf{v}\text{(}t\text{)}}{\,dt}\]Earlier, we found the horizontal velocity to be
\[{v_{\text{x}2}}={v_{\text{x}1}}+{w_{2}}\,{L_{2}}\,\cos\left({θ_{2}}\right)\]Applying this to our equation for acceleration
\[{a_{\text{x}2}}=\frac{\,d{v_{\text{x}1}}+{w_{2}}\,{L_{2}}\,\cos\left({θ_{2}}\right)}{\,dt}\]By the product and chain rules, we find
\[{a_{\text{x}2}}={a_{\text{x}1}}-{w_{2}}^{2}\,{L_{2}}\,\sin\left({θ_{2}}\right)+{α_{2}}\,{L_{2}}\,\cos\left({θ_{2}}\right)\]Refname | GD:accelerationY2 |
---|---|
Label |
The y-component of acceleration of the second object |
Units |
\(\frac{\text{m}}{\text{s}^{2}}\) |
Equation | \[{a_{\text{y}2}}={a_{\text{y}1}}+{w_{2}}^{2}\,{L_{2}}\,\cos\left({θ_{2}}\right)+{α_{2}}\,{L_{2}}\,\sin\left({θ_{2}}\right)\] |
Description | |
Source | -- |
RefBy |
Our acceleration is:
\[\symbf{a}\text{(}t\text{)}=\frac{\,d\symbf{v}\text{(}t\text{)}}{\,dt}\]Earlier, we found the horizontal velocity to be
\[{v_{\text{y}2}}={v_{\text{y}1}}+{w_{2}}\,{L_{2}}\,\sin\left({θ_{2}}\right)\]Applying this to our equation for acceleration
\[{a_{\text{y}2}}=\frac{\,d{v_{\text{y}1}}+{w_{2}}\,{L_{2}}\,\sin\left({θ_{2}}\right)}{\,dt}\]By the product and chain rules, we find
\[{a_{\text{y}2}}={a_{\text{y}1}}+{w_{2}}^{2}\,{L_{2}}\,\cos\left({θ_{2}}\right)+{α_{2}}\,{L_{2}}\,\sin\left({θ_{2}}\right)\]Refname | GD:xForce1 |
---|---|
Label |
Horizontal force on the first object |
Units | N |
Equation | \[\symbf{F}=m \symbf{a}\text{(}t\text{)}=-{\symbf{T}_{1}}\,\sin\left({θ_{1}}\right)+{\symbf{T}_{2}}\,\sin\left({θ_{2}}\right)\] |
Description | |
Source | -- |
RefBy |
Refname | GD:yForce1 |
---|---|
Label |
Vertical force on the first object |
Units | N |
Equation | \[\symbf{F}=m \symbf{a}\text{(}t\text{)}={\symbf{T}_{1}}\,\cos\left({θ_{1}}\right)-{\symbf{T}_{2}}\,\cos\left({θ_{2}}\right)-{m_{1}}\,\symbf{g}\] |
Description | |
Source | -- |
RefBy |
Refname | GD:xForce2 |
---|---|
Label |
Horizontal force on the second object |
Units | N |
Equation | \[\symbf{F}=m \symbf{a}\text{(}t\text{)}=-{\symbf{T}_{2}}\,\sin\left({θ_{2}}\right)\] |
Description | |
Source | -- |
RefBy |
Refname | GD:yForce2 |
---|---|
Label |
Vertical force on the second object |
Units | N |
Equation | \[\symbf{F}=m \symbf{a}\text{(}t\text{)}={\symbf{T}_{2}}\,\cos\left({θ_{2}}\right)-{m_{2}}\,\symbf{g}\] |
Description | |
Source | -- |
RefBy |
This section collects and defines all the data needed to build the instance models.
Refname | DD:positionGDD |
---|---|
Label | Velocity |
Symbol | v(t) |
Units |
\(\frac{\text{m}}{\text{s}}\) |
Equation | \[\symbf{v}\text{(}t\text{)}=\frac{\,d\symbf{p}\text{(}t\text{)}}{\,dt}\] |
Description | |
Source | -- |
RefBy |
GD:velocityY2, GD:velocityY1, GD:velocityX2, and GD:velocityX1 |
Refname | DD:positionXDD1 |
---|---|
Label |
Horizontal position of the first object |
Symbol | px1 |
Units | m |
Equation | \[{p_{\text{x}1}}={L_{1}}\,\sin\left({θ_{1}}\right)\] |
Description | |
Notes |
px1 is the horizontal position px1 is shown in Fig:dblpend. |
Source | -- |
RefBy |
Refname | DD:positionYDD1 |
---|---|
Label |
Vertical position of the first object |
Symbol | py1 |
Units | m |
Equation | \[{p_{\text{y}1}}=-{L_{1}}\,\cos\left({θ_{1}}\right)\] |
Description | |
Notes |
py1 is the vertical position py1 is shown in Fig:dblpend. |
Source | -- |
RefBy |
Refname | DD:positionXDD2 |
---|---|
Label |
Horizontal position of the second object |
Symbol | px2 |
Units | m |
Equation | \[{p_{\text{x}2}}={p_{\text{x}1}}+{L_{2}}\,\sin\left({θ_{2}}\right)\] |
Description | |
Notes |
px2 is the horizontal position px2 is shown in Fig:dblpend. |
Source | -- |
RefBy |
Refname | DD:positionYDD2 |
---|---|
Label |
Vertical position of the second object |
Symbol | py2 |
Units | m |
Equation | \[{p_{\text{y}2}}={p_{\text{y}1}}-{L_{2}}\,\cos\left({θ_{2}}\right)\] |
Description | |
Notes |
py2 is the vertical position py2 is shown in Fig:dblpend. |
Source | -- |
RefBy |
Refname | DD:accelerationGDD |
---|---|
Label | Acceleration |
Symbol | a(t) |
Units |
\(\frac{\text{m}}{\text{s}^{2}}\) |
Equation | \[\symbf{a}\text{(}t\text{)}=\frac{\,d\symbf{v}\text{(}t\text{)}}{\,dt}\] |
Description | |
Source | -- |
RefBy |
Refname | DD:forceGDD |
---|---|
Label | Force |
Symbol | F |
Units | N |
Equation | \[\symbf{F}=m \symbf{a}\text{(}t\text{)}\] |
Description | |
Source | -- |
RefBy |
This section transforms the problem defined in the problem description into one which is expressed in mathematical terms. It uses concrete symbols defined in the data definitions to replace the abstract symbols in the models identified in theoretical models and general definitions.
Refname | IM:calOfAngle1 |
---|---|
Label | Calculation of angle of first rod |
Input |
L1, L2, m1, m2, θ1, θ2 |
Output | θ1 |
Input Constraints | \[{L_{1}}\gt{}0\] \[{L_{2}}\gt{}0\] \[{m_{1}}\gt{}0\] \[{m_{2}}\gt{}0\] |
Output Constraints | |
Equation | \[{α_{1}}\left({θ_{1}},{θ_{2}},{w_{1}},{w_{2}}\right)=\frac{-g\,\left(2\,{m_{1}}+{m_{2}}\right)\,\sin\left({θ_{1}}\right)-{m_{2}}\,g\,\sin\left({θ_{1}}-2\,{θ_{2}}\right)-2\,\sin\left({θ_{1}}-{θ_{2}}\right)\,{m_{2}}\,\left({w_{2}}^{2}\,{L_{2}}+{w_{1}}^{2}\,{L_{1}}\,\cos\left({θ_{1}}-{θ_{2}}\right)\right)}{{L_{1}}\,\left(2\,{m_{1}}+{m_{2}}-{m_{2}}\,\cos\left(2\,{θ_{1}}-2\,{θ_{2}}\right)\right)}\] |
Description | |
Notes |
θ1 is calculated by solving the ODE here together with the initial conditions and IM:calOfAngle2. |
Source | -- |
RefBy |
FR:Output-Values, FR:Calculate-Angle-Of-Rod, and IM:calOfAngle2 |
Refname | IM:calOfAngle2 |
---|---|
Label |
Calculation of angle of second rod |
Input |
L1, L2, m1, m2, θ1, θ2 |
Output | θ2 |
Input Constraints | \[{L_{1}}\gt{}0\] \[{L_{2}}\gt{}0\] \[{m_{1}}\gt{}0\] \[{m_{2}}\gt{}0\] |
Output Constraints | |
Equation | \[{α_{2}}\left({θ_{1}},{θ_{2}},{w_{1}},{w_{2}}\right)=\frac{2\,\sin\left({θ_{1}}-{θ_{2}}\right)\,\left({w_{1}}^{2}\,{L_{1}}\,\left({m_{1}}+{m_{2}}\right)+g\,\left({m_{1}}+{m_{2}}\right)\,\cos\left({θ_{1}}\right)+{w_{2}}^{2}\,{L_{2}}\,{m_{2}}\,\cos\left({θ_{1}}-{θ_{2}}\right)\right)}{{L_{2}}\,\left(2\,{m_{1}}+{m_{2}}-{m_{2}}\,\cos\left(2\,{θ_{1}}-2\,{θ_{2}}\right)\right)}\] |
Description | |
Notes |
θ2 is calculated by solving the ODE here together with the initial conditions and IM:calOfAngle1. |
Source | -- |
RefBy |
FR:Output-Values, FR:Calculate-Angle-Of-Rod, IM:calOfAngle2, and IM:calOfAngle1 |
By solving equations GD:xForce2 and GD:yForce2 for T2 sin(θ2) and T2 cos(θ2) and then substituting into equation GD:xForce1 and GD:yForce1 , we can get equations 1 and 2:
\[{m_{1}}\,{a_{\text{x}1}}=-{\symbf{T}_{1}}\,\sin\left({θ_{1}}\right)-{m_{2}}\,{a_{\text{x}2}}\] \[{m_{1}}\,{a_{\text{y}1}}={\symbf{T}_{1}}\,\cos\left({θ_{1}}\right)-{m_{2}}\,{a_{\text{y}2}}-{m_{2}}\,g-{m_{1}}\,g\]Multiply the equation 1 by cos(θ1) and the equation 2 by sin(θ1) and rearrange to get:
\[{\symbf{T}_{1}}\,\sin\left({θ_{1}}\right)\,\cos\left({θ_{1}}\right)=-\cos\left({θ_{1}}\right)\,\left({m_{1}}\,{a_{\text{x}1}}+{m_{2}}\,{a_{\text{x}2}}\right)\] \[{\symbf{T}_{1}}\,\sin\left({θ_{1}}\right)\,\cos\left({θ_{1}}\right)=\sin\left({θ_{1}}\right)\,\left({m_{1}}\,{a_{\text{y}1}}+{m_{2}}\,{a_{\text{y}2}}+{m_{2}}\,g+{m_{1}}\,g\right)\]This leads to the equation 3
\[\sin\left({θ_{1}}\right)\,\left({m_{1}}\,{a_{\text{y}1}}+{m_{2}}\,{a_{\text{y}2}}+{m_{2}}\,g+{m_{1}}\,g\right)=-\cos\left({θ_{1}}\right)\,\left({m_{1}}\,{a_{\text{x}1}}+{m_{2}}\,{a_{\text{x}2}}\right)\]Next, multiply equation GD:xForce2 by cos(θ2) and equation GD:yForce2 by sin(θ2) and rearrange to get:
\[{\symbf{T}_{2}}\,\sin\left({θ_{2}}\right)\,\cos\left({θ_{2}}\right)=-\cos\left({θ_{2}}\right)\,{m_{2}}\,{a_{\text{x}2}}\] \[{\symbf{T}_{1}}\,\sin\left({θ_{2}}\right)\,\cos\left({θ_{2}}\right)=\sin\left({θ_{2}}\right)\,\left({m_{2}}\,{a_{\text{y}2}}+{m_{2}}\,g\right)\]which leads to equation 4
\[\sin\left({θ_{2}}\right)\,\left({m_{2}}\,{a_{\text{y}2}}+{m_{2}}\,g\right)=-\cos\left({θ_{2}}\right)\,{m_{2}}\,{a_{\text{x}2}}\]By giving equations GD:accelerationX1 and GD:accelerationX2 and GD:accelerationY1 and GD:accelerationY2 plus additional two equations, 3 and 4, we can get IM:calOfAngle1 and IM:calOfAngle2 via a computer algebra program:
The Data Constraints Table shows the data constraints on the input variables. The column for physical constraints gives the physical limitations on the range of values that can be taken by the variable. The uncertainty column provides an estimate of the confidence with which the physical quantities can be measured. This information would be part of the input if one were performing an uncertainty quantification exercise. The constraints are conservative to give the user of the model the flexibility to experiment with unusual situations. The column of typical values is intended to provide a feel for a common scenario.
Var | Physical Constraints | Typical Value | Uncert. |
---|---|---|---|
L1 | L1 > 0 | 1.0 m | 10% |
L2 | L2 > 0 | 1.0 m | 10% |
m1 | m1 > 0 | 0.5 kg | 10% |
m2 | m2 > 0 | 0.5 kg | 10% |
The Data Constraints Table shows the data constraints on the output variables. The column for physical constraints gives the physical limitations on the range of values that can be taken by the variable.
Var | Physical Constraints |
---|---|
θ1 | θ1 > 0 |
θ2 | θ2 > 0 |
This section provides the functional requirements, the tasks and behaviours that the software is expected to complete, and the non-functional requirements, the qualities that the software is expected to exhibit.
This section provides the functional requirements, the tasks and behaviours that the software is expected to complete.
Symbol | Description | Units |
---|---|---|
L1 | Length of the first rod | m |
L2 | Length of the second rod | m |
m1 | Mass of the first object | kg |
m2 | Mass of the second object | kg |
This section provides the non-functional requirements, the qualities that the software is expected to exhibit.
The purpose of the traceability matrices is to provide easy references on what has to be additionally modified if a certain component is changed. Every time a component is changed, the items in the column of that component that are marked with an "X" should be modified as well. Tab:TraceMatAvsA shows the dependencies of the assumptions on each other. Tab:TraceMatAvsAll shows the dependencies of the data definitions, theoretical models, general definitions, instance models, requirements, likely changes, and unlikely changes on the assumptions. Tab:TraceMatRefvsRef shows the dependencies of the data definitions, theoretical models, general definitions, and instance models on each other. Tab:TraceMatAllvsR shows the dependencies of the requirements and goal statements on the data definitions, theoretical models, general definitions, and instance models.
A:twoDMotion | A:cartSys | A:cartSysR | A:yAxisDir | A:startOrigin | A:firstPend | A:secondPend | |
---|---|---|---|---|---|---|---|
A:twoDMotion | |||||||
A:cartSys | |||||||
A:cartSysR | |||||||
A:yAxisDir | |||||||
A:startOrigin | |||||||
A:firstPend | |||||||
A:secondPend |
The purpose of the traceability graphs is also to provide easy references on what has to be additionally modified if a certain component is changed. The arrows in the graphs represent dependencies. The component at the tail of an arrow is depended on by the component at the head of that arrow. Therefore, if a component is changed, the components that it points to should also be changed. Fig:TraceGraphAvsA shows the dependencies of assumptions on each other. Fig:TraceGraphAvsAll shows the dependencies of data definitions, theoretical models, general definitions, instance models, requirements, likely changes, and unlikely changes on the assumptions. Fig:TraceGraphRefvsRef shows the dependencies of data definitions, theoretical models, general definitions, and instance models on each other. Fig:TraceGraphAllvsR shows the dependencies of requirements and goal statements on the data definitions, theoretical models, general definitions, and instance models. Fig:TraceGraphAllvsAll shows the dependencies of dependencies of assumptions, models, definitions, requirements, goals, and changes with each other.
For convenience, the following graphs can be found at the links below:
There are no auxiliary constants.