Decimal to Degrees mathematics help


Closed Thread
Results 1 to 18 of 18
  1. #1

    Default Decimal to Degrees mathematics help

    Hi All,

    I'm working on some code to read a AC or DC motors position
    using a potmeter as indicator having max 5V at the whiper

    I'm using the 16F819 with 10bit AD

    I was wondering how I can convert the AD word value to 360 deg, as PBP has
    limited math possibilitys

    In the final code I want to implement a setup routine so that I can determine
    which Digtal value (word) corresponds to 360deg or max azimuth to do the final divide

    Can someone help me with the mathematics part as I dont see how to do that

    Lets say that we have the following variables:

    AZdeg position 0 to 360 deg
    AZdig position from AD convertion
    AZdigmax value which corresponds to 360deg (during setup) so here we have to determine the divide ratio

    Thanks all for your time reading my request

  2. #2
    Join Date
    Jan 2006
    Location
    Istanbul
    Posts
    1,185


    Did you find this post helpful? Yes | No

    Default

    If what I understood is correct, then a simple experiment could be as follows.

    At 0 degree, record ADC value. Say it shows 150 (this would be your base value).

    At 360 degree, record ADC value. Say it shows 900.

    Then each degree would become as;
    (900-150) / 360 = 2.

    That means, when your ADC reading is 152, you will know that you are at 1st degree, 154 is 2nd, 156 is 3rd. etc...

    With an additional math, which I am sure you can figure out, you can get the exact degree.


    Was this what you needed, or I am in a different page?



    ----------------
    "If the Earth were a single state, Istanbul would be its capital." Napoleon Bonaparte

  3. #3
    Join Date
    May 2004
    Location
    NW France
    Posts
    3,648


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by sayzer

    At 0 degree, record ADC value. Say it shows 150 (this would be your base value).

    At 360 degree, record ADC value. Say it shows 900.

    Then each degree would become as;
    (900-150) / 360 = 2.

    That means, when your ADC reading is 152, you will know that you are at 1st degree, 154 is 2nd, 156 is 3rd. etc...

    With an additional math, which I am sure you can figure out, you can get the exact degree.


    Was this what you needed, or I am in a different page?



    ----------------
    Hi, Sayzer

    ... life is easy with you !!!

    RF:

    at first, be sure to use the posssible max of the ADC range for your measure ...

    As said by sayzer, read the min ( 0°) and Max ( 359.9 °)

    then you get a result between 0 and 1023 ... no use to look at a better than .1% precision ( humour )

    But, to keep decimals, just multiply the result by ... 64 , to use the max counting possibilities of the Pic.

    so, let's make it clear:

    Scale = MaxValue - MinValue

    dummy = ( AdcResult - MinValue ) x 64

    ' disable interrupts ... if necessary

    dummy = dummy x 360

    Result_64 = DIV32 Scale

    ' re enable

    Now, dividing Result_64 by ... 64 ( 6 right shifts ...) give the INT part.

    ... and , if needed, the 6 right digits will give 64 x the decimal part.... a little bits shifting ( or multiplying i.e. by 100 )and you can show it !!!


    life is sooooooooo simple ....

    Alain
    Last edited by Acetronics2; - 2nd October 2006 at 09:43.
    ************************************************** ***********************
    Why insist on using 32 Bits when you're not even able to deal with the first 8 ones ??? ehhhhhh ...
    ************************************************** ***********************
    IF there is the word "Problem" in your question ...
    certainly the answer is " RTFM " or " RTFDataSheet " !!!
    *****************************************

  4. #4
    Join Date
    Jan 2006
    Location
    Istanbul
    Posts
    1,185


    Did you find this post helpful? Yes | No

    Default

    Be My teacher Alain!


    ------------------------
    "If the Earth were a single state, Istanbul would be its capital." Napoleon Bonaparte

  5. #5
    Join Date
    Jul 2003
    Location
    Sweden
    Posts
    237


    Did you find this post helpful? Yes | No

    Post

    Keep in mind that "normal" potentiometers are NOT very linear. There are special types for positioning purposes.

  6. #6
    Join Date
    Jan 2006
    Location
    Istanbul
    Posts
    1,185


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by Ingvar
    Keep in mind that "normal" potentiometers are NOT very linear. There are special types for positioning purposes.

    Multi turn pots could be a good choice for positioning.
    In 360 degree, with the help of some gears, the pot can turn 10 times.

    Thus, Alain's math can have a better accuracy.
    "If the Earth were a single state, Istanbul would be its capital." Napoleon Bonaparte

  7. #7
    Join Date
    Jul 2005
    Posts
    78


    Did you find this post helpful? Yes | No

    Default

    Some things to keep in mind here (and elsewhere too):

    1) The max number from the analog conversion is 1023, which is the maximum number expressible with the 10 bits from the converter. SO, the maximum resolution you can get is 360/1023= .3519 degrees per bit

    2) Converting from raw A2D number to degrees is simple, just (assuming max reading is 1023, and min is zero) A2Dreading x 360 / 1023. However, it is important to perform the calculation by doing the multiplication first, then the division. If you divide first you’ll loose a lot of precision (do you see why?) You’re working with integer numbers here, so the decimal parts get lost quickly. Alain has a good point when he scale up the reading, just be careful you do not overflow the variable; his use of 64 is the most you can scale this number up

    Max scale factor = biggest word / biggest expected number = 65535 / 1023 = 64.0165… so use 64. PBP does have some facilities for handling double precision multiplicands (32 bit products), but that’s trouble to deal with.

  8. #8
    Join Date
    Jan 2006
    Location
    Istanbul
    Posts
    1,185


    Did you find this post helpful? Yes | No

    Default

    Lets make it simple.

    Try my way first.

    You will be surprised with the result.
    "If the Earth were a single state, Istanbul would be its capital." Napoleon Bonaparte

  9. #9


    Did you find this post helpful? Yes | No

    Default

    Hey Guys

    very suprised about the fast reply's , thanks to all !!!

    I will give it a try this evening.

    I agree that potmeters are not that linair, and I dont need the 0.3 deg
    precision, but 8bit is not enough

    Will try sayzers solution this evening, if it is not working i will post the code
    for the specialists

    Thanks agn

  10. #10
    Join Date
    Jan 2006
    Location
    Istanbul
    Posts
    1,185


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by RFsolution
    ....
    if it is not working i will post the code for the specialists

    You broke my heart !


    --------------------------
    "If the Earth were a single state, Istanbul would be its capital." Napoleon Bonaparte

  11. #11


    Did you find this post helpful? Yes | No

    Default

    Hi

    This is what I have but dont see any light in "my" tunnel

    OSCCON = $60
    DEFINE OSC 4
    DEFINE adc_bits 10
    DEFINE adc_clock 3
    DEFINE adc_sampleus 50

    adcresult VAR WORD
    dummy var word
    adcon1=%100000010
    maxvalue var word
    minvalue var word
    scale var word
    result_64 var word

    init:
    maxvalue = 64000 'this is 359,8 degrees
    minvalue = 2200 ' this is equal to 0 degrees

    loop:
    gosub readadc
    Scale = MaxValue - MinValue
    dummy = (AdcResult - MinValue) * 64
    dummy = dummy * 360
    Result_64 = DIV32 Scale
    SerOut 6,6,["adc=",#adcresult," scale=",#scale," dummy=",#dummy," res64=",result_64,10,13]
    goto loop


    readADC:
    ADCIN 0, adcresult
    return

  12. #12
    Join Date
    Jul 2005
    Posts
    78


    Did you find this post helpful? Yes | No

    Default

    OK, a lot of code, but no hint as to what is going wrong!

    When getting up a new project, try to cut it into as many small slices as possible, get first to work, then move on to the next slice.



    Slice 1: getting out debug info. Method: just post dummy data.

    Slice 2: Read A2D. Method: read it, then output as debug info

    Slice 3: Convert to degrees. Method: as discussed

  13. #13
    Join Date
    Jan 2006
    Location
    Istanbul
    Posts
    1,185


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by RFsolution
    Hi

    This is what I have but dont see any light in "my" tunnel

    OSCCON = $60
    DEFINE OSC 4
    DEFINE adc_bits 10
    DEFINE adc_clock 3
    DEFINE adc_sampleus 50

    adcresult VAR WORD
    dummy var word
    adcon1=%100000010
    maxvalue var word
    minvalue var word
    scale var word
    result_64 var word

    init:
    maxvalue = 64000 'this is 359,8 degrees
    minvalue = 2200 ' this is equal to 0 degrees

    .....

    You have 10bits of res. Thus you need the result as right justified. But you have adcon1=%100000010 one extra 0 is typed here. So the result becomes as left justified. Thus you get your results as 64000 and 2200.

    Change it to adcon1=%10000010. So you now have correct right justified setting.

    Then check the readings again.



    -------------
    "If the Earth were a single state, Istanbul would be its capital." Napoleon Bonaparte

  14. #14
    Join Date
    Oct 2005
    Location
    Sweden
    Posts
    3,604


    Did you find this post helpful? Yes | No

    Default

    Hi,
    I think that your maxvalue and minvalue should be the raw value from the adc ie. between 0 and 1023 and not the raw value times 64.

    Otherwise this will not work:
    Code:
    dummy = (AdcResult - MinValue) * 64
    You get a value between 0 and 1023 from the ADC. Then you subtract 2200 from that which will make it negative and you don't want that.

    Try setting the max and min value to the raw reading from the ADC.

    /Henrik Olsson

  15. #15


    Did you find this post helpful? Yes | No

    Default

    Hi sayzer and henrik thanks for your help

    Well,

    ADCON was wrong so I was getting more than a 10bits ADC result
    so ofcouse my minvalue and maxvalue that i noticed was wrong
    so all mathemacics also resulting in a non res_64 variable

    I'm now getting a value of res_64 but and after dividing it by 64 I have
    a nice 360 deg readout,

    Can anyone help with the bitshifting and additional dividing ? to have a
    .1 deg variable and readout ?

    Thanks

  16. #16
    Join Date
    Jul 2005
    Posts
    78


    Did you find this post helpful? Yes | No

    Default

    With a 10 bit A2D you have a max reading of 1023 counts, which represents 360 degrees. Therefor, each count is 1023/360=2.84... degrees.

    You don't have .1 degree resolution here, you have 3 degree resolution. That .1 degree is not a true number.

  17. #17
    Join Date
    Jan 2006
    Location
    Istanbul
    Posts
    1,185


    Did you find this post helpful? Yes | No

    Default

    Hi ErnieM,

    I do not think your formula is ok. Your result is not in "degree" by the way. 2.84 is the step for per degree.

    Lets leave 0.1 degree sensitivity issue to our teacher, Alain!

    I love to learn.


    ----------------------
    "If the Earth were a single state, Istanbul would be its capital." Napoleon Bonaparte

  18. #18
    Join Date
    Jul 2005
    Posts
    78


    Did you find this post helpful? Yes | No

    Default

    Oops, I inverted it. I should have checked the units.

    Resolution = 360 [degrees] / 1023 [count] = .3519... [degrees/count]



    However, you still don't have .1 degree resolution.

Similar Threads

  1. variable + decimal
    By savnik in forum mel PIC BASIC Pro
    Replies: 4
    Last Post: - 18th August 2009, 14:21
  2. Offset to variable howto ?
    By RFsolution in forum mel PIC BASIC Pro
    Replies: 18
    Last Post: - 3rd October 2008, 09:36
  3. Conversion to degrees help
    By RFsolution in forum mel PIC BASIC Pro
    Replies: 18
    Last Post: - 5th September 2008, 18:03
  4. Help for decimal conversion
    By eva in forum mel PIC BASIC Pro
    Replies: 2
    Last Post: - 15th March 2007, 18:20
  5. Convert a word variable to decimal
    By Tomexx in forum mel PIC BASIC Pro
    Replies: 1
    Last Post: - 4th December 2004, 20:02

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts