Sourcebook for Prog Calcs (TI)
|
11-23-2023, 01:17 PM
Post: #21
|
|||
|
|||
RE: Sourcebook for Prog Calcs (TI)
Excellent source, thanks. Pedro
|
|||
11-24-2023, 10:08 AM
Post: #22
|
|||
|
|||
RE: Sourcebook for Prog Calcs (TI)
Hello,
Does anyone have a link to the book "La calculatrice scientifique" (VANGELUWE / GLORIEUX) (Hachette, Collection Faire le point, 1979) ? It seems I've lost it, it was a very fascinating book with programming examples Thanks |
|||
11-24-2023, 12:27 PM
Post: #23
|
|||
|
|||
RE: Sourcebook for Prog Calcs (TI)
Not a PDF free, but a possible way to get a copy here:
https://books.google.com.ar/books/about/...edir_esc=y https://fr.shopping.rakuten.com/offer/bu...rieux.html Pedro |
|||
11-24-2023, 12:51 PM
Post: #24
|
|||
|
|||
RE: Sourcebook for Prog Calcs (TI)
(11-24-2023 10:08 AM)Pekis Wrote: Hello, I have had a copy since its release in 1979 but it is in a "pocket" format and it is impossible to scan it without breaking it. http://ti58c.phweb.me http://clones.phweb.me http://www.instagram.com/ti58c "No! Do or Do not. There is no try!" [Master Yoda] |
|||
11-24-2023, 01:19 PM
Post: #25
|
|||
|
|||
RE: Sourcebook for Prog Calcs (TI)
Just to make you want... the table of contents
http://ti58c.phweb.me http://clones.phweb.me http://www.instagram.com/ti58c "No! Do or Do not. There is no try!" [Master Yoda] |
|||
11-25-2023, 07:51 AM
(This post was last modified: 11-25-2023 07:59 AM by Pekis.)
Post: #26
|
|||
|
|||
RE: Sourcebook for Prog Calcs (TI)
Merci, Pierre and Gracias, Pedro !
|
|||
11-27-2023, 12:11 AM
Post: #27
|
|||
|
|||
RE: Sourcebook for Prog Calcs (TI)
(11-04-2023 04:44 AM)Matt Agajanian Wrote: Has anyone ported programs from TI’s book to an HP programmable? Equation of Time This program is a translation for the HP-42S: Code: 00 { 126-Byte Prgm } I made a few adjustments when calculating E end removed some registers that are not needed when using the stack. Other than that the usage is the same as with the original program. Here's a Python implementation: Code: from math import sqrt, sin, cos, acos, pi, degrees, radians This prints a table: Code: for t in range(0, 361, 20): 0 -4.368882 20 -11.746792 40 -14.207033 60 -11.796538 80 -6.421670 100 -0.675805 120 3.039227 140 3.272447 160 0.262027 180 -3.894666 200 -6.328610 220 -5.151356 240 -0.360710 260 6.456142 280 12.854483 300 16.223871 320 14.591118 340 7.750332 360 -1.889634 Or if you want to plot it: Code: import matplotlib.pyplot as plt However this reminded me of my article in the old forum: Sunrise and Sunset The following formula is used: \[ \psi(t) = t + 2 e \sin(t) + \frac{5}{4} e^2 \sin(2t) + \cdots \] And then a coordinate transformation is used based on →REC and →POL. All the constants have to be stored in radians. Register Contents \( \begin{matrix} R_{00} & \omega_0 \\ R_{01} & e \\ R_{02} & \varepsilon \\ R_{03} & \Theta_0 \\ \end{matrix} \) Astronomical Constants The astronomical constants for the epoch 1980 are given below: \( \begin{align} \omega_0 &= 360^\circ / 365.2421982 \; \text{days} \\ e &= 0.0167175 \\ \varepsilon &= 23.441883^\circ \\ \Theta_0 &= 282.59646^\circ \\ \end{align} \) Here's the program for the HP-42S: Code: 00 { 53-Byte Prgm } You may notice that the results are slightly different. |
|||
12-28-2023, 07:32 PM
Post: #28
|
|||
|
|||
RE: Sourcebook for Prog Calcs (TI)
http://ti58c.phweb.me http://clones.phweb.me http://www.instagram.com/ti58c "No! Do or Do not. There is no try!" [Master Yoda] |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)