Does anyone know a library which generates enthalpy–entropy charts (h-s chart, Mollier h,x Diagramm in german)?
Does anyone know a library which generates enthalpy–entropy charts (h-s chart, Mollier h,x Diagramm
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There’s always the
gnuplotextension for PHP. I’ve never plotted an enthalpy-entropy chart withgnuplot, but I’m sure it’s perfectly capable.http://php-gnuplot.sourceforge.net/
Perhaps a better option is to not use the extension, and run
gnuplotdirectly from a shell script instead. This way you have access to every feature ofgnuplot, and aren’t constrained by what the extension does/doesn’t provide.Here’s a pretty good guide on running
gnuplotfrom a shell script:http://t16web.lanl.gov/Kawano/gnuplot/intro/working-e.html
And if you need a little primer on
gnuplot, there is:http://www.ibm.com/developerworks/library/l-gnuplot/
Once you have the script, it can be called via
exec()in PHP. Don’t forget tochmod +x gnuplot-script.shfirst to make it executable.