i have a Mindstorms robot that has back/forward facing wheels and a motor in front that moves a stick left and right (circular motion) and i want the left and right motion of the end of the stick to be linear. i want to achieve this by correcting the circular motion using the back/forward motion. here is a picture for referencepicture If you knowany formulas or proceses let me know. thanx in adwance
Convert circular motion and back and forward linear motion to sideways linear motion
259 Views Asked by Gapi505 At
1
There are 1 best solutions below
Related Questions in PYTHON
- add fo:marker marker-class-name="section.head.marker" to specific sections
- Using Schematron to identify a space as first character in element
- SVG To Multipage PDF
- Define a Linux manual page's TITLE text when using docbook2man?
- docbook saxon toolchain extension jar file -- cannot find same
- docbook style sheets param.xsl
- Maven docbkx plugin and Eclipse
- Numbering of figures in DocBook
- xslt flattening and unflattening DocBook para element
- Remove Caption from one Figure
Related Questions in GEOMETRY
- add fo:marker marker-class-name="section.head.marker" to specific sections
- Using Schematron to identify a space as first character in element
- SVG To Multipage PDF
- Define a Linux manual page's TITLE text when using docbook2man?
- docbook saxon toolchain extension jar file -- cannot find same
- docbook style sheets param.xsl
- Maven docbkx plugin and Eclipse
- Numbering of figures in DocBook
- xslt flattening and unflattening DocBook para element
- Remove Caption from one Figure
Related Questions in MICROPYTHON
- add fo:marker marker-class-name="section.head.marker" to specific sections
- Using Schematron to identify a space as first character in element
- SVG To Multipage PDF
- Define a Linux manual page's TITLE text when using docbook2man?
- docbook saxon toolchain extension jar file -- cannot find same
- docbook style sheets param.xsl
- Maven docbkx plugin and Eclipse
- Numbering of figures in DocBook
- xslt flattening and unflattening DocBook para element
- Remove Caption from one Figure
Related Questions in LEGO-MINDSTORMS-EV3
- add fo:marker marker-class-name="section.head.marker" to specific sections
- Using Schematron to identify a space as first character in element
- SVG To Multipage PDF
- Define a Linux manual page's TITLE text when using docbook2man?
- docbook saxon toolchain extension jar file -- cannot find same
- docbook style sheets param.xsl
- Maven docbkx plugin and Eclipse
- Numbering of figures in DocBook
- xslt flattening and unflattening DocBook para element
- Remove Caption from one Figure
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
First, let's make a more mathematical drawing of the problem. The half of a circle is the possible path your stick can have, assuming that the robot is static. The radius of this circle, h, is the length of you stick. Point A is the starting position of the stick, point B is the ending position of the stick. Corner α is its starting angle and corner β is its ending angle, both measured from the x-axis.
In this picture, x is the difference in the x-axis between the two positions of the stick. It is thus the distance that the robot needs to compensate by driving backwards and so the target of our calculation.
In order to calculate x, we need the difference of the two x-coordinates of the stick's positions. In math language, this becomes:
Note that
|EC|
means the length of segment[EC]
.Now we only need to calculate
|EC|
and|ED|
. This can be done using the cosine function. The cosine function calculates the ratio of the apothema of a triangle and the side adjacent to the corner chosen in a right-angled triangle. For more information, see Wikipedia.If you do know the angles already, its fairly simple from here. In triangle
EDA
, we can state that:In triangle
ECB
, we can state that:We can reform the equations to:
and:
Then, if we fill in the first equation, then we get:
Note that you might have form the angles in the correct form, as they might not be measured from the x-axis.
But if we don't know the angles yet, we need to calculate them first. Then we need to know
|AD|
and|BC|
, which is the distance between the center of the robot and the position we want to reach.This time we will have to use the sine function, which is the ratio of the apothema of a triangle and the side opposite to the corner chosen in a right-angled triangle.
In triangle
EDA
, we can state that:And in triangle
ECB
, we can state that:This means that we can use the arcsine function, usually denoted as
sin⁻¹ x
. It calculates the angle which has cosine x.If we reform the equations, we get:
And:
Using these values, we can uses the formula above to calculate x.