A web-browser-based calculator for physicists

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 4K views
fffred
Messages
2
Reaction score
0
Hi,

I am currently developing a calculator for physicists which can be very simply opened in a web browser, without the need to install anything, or even be online. The repository is currently on Github here and can be freely accessed (click the download zip button at the bottom right corner).

Anyone interested in joining the development is welcome. Also, if you find bugs or have good ideas for improvements, that's also welcome.

The calculator can obviously do calculations with numbers, but also includes units manipulation, and physical constants. I recently added the capability to plot curves, so that's convenient for quick visualization of functions.

I know that google can already do all this calculation and graphing, but I was kind of tired of typing the full name for constants, such as "electron charge". Also you cannot add custom things to google calculator, and you have to be online.

So here you go, please tell me what you think.
 
Physics news on Phys.org
Also MATLAB has an app for interfacing with a MATLAB server to do the things that it does well. Many computational physicists and engineers use MATLAB for project work.

MATLAB doesn't handle units of measure so that may be a plus in your favor.

You could also check out domain specific languages such as the groovy addon that supports units of measure:

def y = 99.inches + 32.feet

println y.feet

or something like that:

http://groovy.dzone.com/news/domain-specific-language-unit-

Remember its a long uphill battle to build a better mousetrap ask any mouse...

You'll have to decide on your target audience, high school/college students or physicists/engineers who've used tools like MATLAB and Mathematica and have them installed on their work machines.
 
Last edited:
There are definitely things out there that can do that stuff already.

About WolframAlpha, there are no possible comparisons in terms of capabilities. I do not aim at competing with this at all. The goal is a calculator that is available offline, thus would go faster for simple calculations (and is open source).

Also, I use MATLAB all the time, but it is a very heavy (and pricy) program that I don't launch for simple stuff. And it does not do units.

Concerning groovy, or similar, that's a programming language and the idea is to keep things simple without the need for the user of programming anything.
 
fffred said:
Concerning groovy, or similar, that's a programming language and the idea is to keep things simple without the need for the user of programming anything.

With respect to groovy, the example I posted was a domain specific language for endusers not programmers. The idea was that sometimes typing in your equation with units of measure is better. I thought you might be interested in how it handled units of measure.