Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

equations: Add equations from the HP50 equation library #1040

Open
c3d opened this issue Jul 22, 2024 · 8 comments
Open

equations: Add equations from the HP50 equation library #1040

c3d opened this issue Jul 22, 2024 · 8 comments
Labels
feature New or missing features

Comments

@c3d
Copy link
Owner

c3d commented Jul 22, 2024

The equation library in the HP50 Advanced Reference Manual is a good starting point for interesting equations and their graphical representation.

@c3d c3d added the feature New or missing features label Jul 22, 2024
c3d added a commit that referenced this issue Aug 2, 2024
Add Eccentric Columns equations from HP50G Advanced Reference Manual

Refs: #1040

Signed-off-by: Christophe de Dinechin <[email protected]>
c3d added a commit that referenced this issue Aug 2, 2024
From HP50G advanced reference manual page 5-5

Refs #1040

Signed-off-by: Christophe de Dinechin <[email protected]>
c3d added a commit that referenced this issue Aug 2, 2024
Add the equation for Simple Slope from page 5-5/5-6 of the HP50G
advanced reference manual.

Refs: #1040

Signed-off-by: Christophe de Dinechin <[email protected]>
@Wiljea
Copy link

Wiljea commented Aug 12, 2024

I would like to help here to enter and document HP50G and other physics eqns (since I have some free time now) but I don't know how besides the following:
create a tagged list of eqns for instance:
Ohm's Law & Power:{'V=IR' 'P=VI' 'P=I^2*R' 'P=V^2/R'}
But I can't see where to save them on the calculator. Being on the Win10 platform, I can't edit correctly the csv file in Notepad++ (undefined spurious characters, e.g. see below) where surprisingly your recent addition (Columns & Beams eqns) doesn't appear.
Any suggestions ?

Also is it necessary to attach units explicitly as you did for in the case in your CSV file:
IdealGas, "'(P_Pa)*(V_m^3)=(n_mol)â’¸R(T_K)'"
And where and how do you document the variables (I guess in the help file)?

@Wiljea
Copy link

Wiljea commented Aug 13, 2024

ATTEMPT#1
I tried to edit the file equations.csv in my directory \wsl.localhost\fedoraremix\home\Wiljea\db48x\config
to add the following:
"Coulomb'sLaw", "'(F_N)=1/(4ⒸπⒸε0)((q1_C)(q2_C)/(r_m)^2)'"
but that doesn't appear in the emulator (where I copied the "Ⓒ"R constant prefix character from the IdealGas law of the same file). Maybe the emulator reads this file only at start-up (during make sim)? What to do then ?

Possible alternate solution
I may enter many equations on my side and transfer by e-mail to you the resulting csv file for your next built of the F/W. I will start entering electricity eqns (with units attached to each variable)) anyway in the csv file. Hope I will have your feedbacks someday.
I finished entering 29 eqns and I am ready to transfer them to see if this works. Now I just e-mail the csv file to you.

@Wiljea
Copy link

Wiljea commented Aug 15, 2024

New eqns completed for Fluids, Forces & Energy, Gases and Heat Transfer. I corrected few errors in Electricity. It is tedious work to add and check the physical units. I am transmitting a newer version (Equations_V2.csv) to replace the former one at the address [email protected] (is this address active ?). I am expecting your feedback to see if this works.

@c3d
Copy link
Owner Author

c3d commented Aug 16, 2024

Hi @Wiljea, thanks for offering to help.

Constants, equations and library (collectively "library items") follow the same logic: there is a built-in set, defined in the source code, and you can customize it with the matching .csv file in the config directory. The two are combined to build what you see in the menus, unless you set the corresponding setting to disable the use of built-in constants/equations/library items when the file is found (this is in case you want to completely override the built-in ones).

The .csv file is read relative to the current directory. If you launch the simulator from the sim directory and not the db48x directory, then the config subdirectory will not be found. You can either change directory, create a symlink to the config directory, or copy it under sim. That should solve your problem loading the file. If not, you should have a file_error message somewhere on the console telling you which file was not read and why (e.g. "file not found" or something else).

I have received your email and I will gladly accept the help. That being said, I am currently on vacation in a spot that has very poor 3G connectivity, so I will most likely not really act on it before Sept 1st. Watch the next few releases :-)

If you want to do it "the right way" and are ready to go into DB48X programming, you can edit the file "equations.cc", adding the data you generated for "equations.csv" in C format. That would add it to the built-in equations. I would appreciate if you could also add the corresponding tests in the tests.cc file, ideally taking values and solutions from the HP50G advanced reference manual (it's available as a PDF on the HP Museum web site). This will ensure that things work as intended.

To run the test suite for a specific topic, use sim/db48x.exe -T<section> where <section> is the section testing what you are interested in. For example, "Columns and Beams" is a section called colnbeams.

@c3d
Copy link
Owner Author

c3d commented Aug 16, 2024

BTW, you mentioned that you were running on Win10, which is a platform I do not build for personally. How do you run the simulator there? Are you using the Linux subsystem for Windows, or buildiing the Qt version directly on Win10? If the latter, would you mind adding a Wiki article explaining how you did it, because I know that others asked about it.

@Wiljea
Copy link

Wiljea commented Aug 16, 2024

Thanks for your reply Christophe,
I apologize for disturbing you during your well-deserved vacation. I will try to be brief and concise so that I can then move forward on my own.

  1. Unfortunately, I don't build the QT version on Win10, because I actually use a Linux console by the Fedora Remix for WSL environment (as pointed out by Rowdy from the SwissMicros forum) and I almost always manage to build the db48x emulator correctly (I sometimes have to do it several times to create the very latest version of the F/W).
  2. Unfortunately also I know very little of the C language (being a physicist, I am more interested in numerical methods, I especially know Fortran, Focal-Free42 (DM42, HP41, etc.) and more recently RPL which I learn to appreciate much for its power).
  3. BUT, if I understood correctly, it is directly in the equations.cc file that I need to intervene. More precisely, between lines 53 and 75 of the present version. So what I am about to do then is to reproduce the unit block going from lines 54 to 65 inclusively for each of the equation sections to import. So I continue what I started by attaching the units of each variable and inserting one equation per line in the equations.cc file.
  4. If this is indeed the case, since I found said file I should be able to do it (before your return) without too much problem by completely transferring the HP50g library and supplementing it with a few additional equations from my beliefs.
  5. I don't know yet what you mean by adding the corresponding tests in the tests.cc file (I didn't look as of now), but once my first task is completed, I will study the situation together with the HP50g reference manual to see if I am able to make sense about all that.

Thanks for your attention and I hope you enjoy the rest of your vacation.

@Wiljea
Copy link

Wiljea commented Aug 21, 2024

PROGRESS REPORT:
Having added several new equations to the existing sections and also a brand new section on relativity, I already exceed a total of 430 equations. This represents a 36% increase over the HP50g library (315 eqns). I work in 2 iterations to eliminate typos and to ensure consistency of parentheses (opening & closing) and the logical coherence of physical units.
The second iteration ends by incorporating them into the C code of the equations.cc file. The task is 30% complete as of 24-08-21. Next steps will be to write the testing code and the HELP documentation.

@Wiljea
Copy link

Wiljea commented Aug 27, 2024

PROGRESS REPORT (24-08-26):
My last version contains 506 equations which corresponds to an increase of 60% compared to the initial library (315). I took care to add the units as they appear in the HP50G examples. Essentially I completed the existing chapters by adding several equations that I believed were relevant to deepen the topics with a brand new chapter of 15 sections on relativity with 86 equations.

To cover the pre-university level in science, a chapter on modern physics is missing which should include at least twenty equations.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature New or missing features
Projects
None yet
Development

No branches or pull requests

2 participants