Skip to content
Snippets Groups Projects
  1. Apr 17, 2018
  2. Mar 27, 2018
  3. Nov 14, 2017
  4. Nov 07, 2017
  5. May 22, 2017
    • Jorrit Wronski's avatar
      Coverity scan and Travis (#23) · cb4d54a1
      Jorrit Wronski authored
      * Added Travis configuration based on the CoolProp settings
      * Enables Travis CI for the master branch
      * Coverity scan is limited to the coverity_scan branch
      cb4d54a1
  6. May 01, 2017
  7. Apr 28, 2017
  8. Apr 10, 2017
    • Jeff Henning's avatar
      Updated Build Scripts to support Mathcad 15 and Prime wrappers (#21) · 90cfa1e2
      Jeff Henning authored
      * Update CMakeLists.txt to Build Wrappers
      
        - Build for either Mathcad 15 or Mathcad Prime 3.x
        - Slight mod to IF97.cpp for WIN32 builds
        - Updated README with Build instructions
      
      * Included Mathad wrapper header files in VS project via CMake script
      
      * Fix memory allocation for Mathcad if97_getvers() function, which returns a string
      
      * Added utility routines for forward and reverse vapor quality
      
        - Calc vapor quality within vapor dome
        - Calc H, S, U, V in terms of P & Q
        - Update documentation
        - Minor fixups with CMake script
        - Minor fixes to eliminate compiler warnings
        - Updated version to 2.1.0
      90cfa1e2
  9. Mar 03, 2017
    • Jeff Henning's avatar
      Saturation Functions Patch (#20) · a97fc3b0
      Jeff Henning authored
      * Patch RegionOutput(key,T,p,SatState) for results on saturation curve.
      
      * Add error code in Mathcad wrapper for catching UNKNOWN exceptions.
      
      * Catch IF97 exception in Mathcad wrapper when (T,p) state lies exactly on saturation curve.
      
      * Clarify branch conditionals with {}
      a97fc3b0
  10. Feb 20, 2017
    • Jeff Henning's avatar
      Function rho_pX patch (#18) · 2d0e52c1
      Jeff Henning authored
      * Patch rho_pX() function in IF97.h
      
      * Added Mathcad wrapper functions for rhoph and rhops for testing of rho_pX function.
      
      * Added Mathcad stub routines for rhoph and rhops.
      2d0e52c1
  11. Feb 19, 2017
    • rafuck's avatar
      1) fix all warnings in g++ -Wall -Wextra (#17) · 5d2d294f
      rafuck authored
      2) fix in "inline double rho_pX" function
      3) replaced pow(somethig, 0,5) with sqrt
      4) replaced pow(somethig, 2) with something*something
      5) std::vector::push_back replaced with reserve + emplace_back
      6) some approaches to vectorize calculations in Region5::T_p(double p)
      7) added const modifier in constant methods
      8) some little optimizations
      5d2d294f
  12. Feb 09, 2017
  13. Feb 05, 2017
    • Jeff Henning's avatar
      Implement IAPWS_UNITS compiler switch (#14) · 73028707
      Jeff Henning authored
      * Added optional compiler switch to use IAPWS Release Doc units if so desired - [MPa] & [kJ].
      
      * Leave surface tension in [N/m] (kg/s-s) units in all cases
      
      * Modify verification program IF97.cpp to use IAPWS_UNITS switch
      
      * Minor edits to IF97 README for compiler switches
      73028707
  14. Jan 23, 2017
    • Jeff Henning's avatar
      Final Updates for v2.0.0 (#12) · 7e31cb26
      Jeff Henning authored
      * Final mods for version 2.0.0
      
       - fix-ups for integration into CoolProp
       - Additional Comments
       - Added functions for Prandtl Number
       - Added Prandtl Number functions to standalone Mathcad wrapper
       - Updated Mathcad wrapper verification files
      
      * Provided a get_if97_version function and updated documentation
      7e31cb26
  15. Jan 10, 2017
    • Jeff Henning's avatar
      Implementation of IF97 Transport Equations (#9) · 07d14807
      Jeff Henning authored
      * Added IAPWS Viscosity functions using Industrial Formulation recommendation.
      
      * Added Mathcad verification document so changes can be tracked and used by others.
      
      * Added Viscosity functions to Mathcad wrapper function doc.
      
      * Added IAPWS surface tension function in Region 4 along saturation curve.
      
      * Added surface tension function to IF97.h
      * Added Mathcad wrapper function "sigma(T)"
      * Updated Mathcad wrapper verification sheet and PDF
      * Updated Mathcad wrapper function documentation
      
      * Move Viscosity equations to base region
      
      * Abandoned idea of a "Region 0"
      * Put viscosity equations into base region
      * Added dRho/dp function in preparation for Thermal Conductivity
      
      * Added Specific heat equations from IAPWS 2011 Revised Release
      
      * Specific heat equations added
      * Mathcad functions implemented
      * Mathcad function documentation updated
      * Verification Mathcad and PDF docs updated
      
      * Updated REAMDE.md to reflect addition of Transport Functions
      
      * Override critical enhancement of thermal conductivity in Region 5 to 0.0
      
      * Minor comment and enumeration fixups.
      07d14807
  16. Dec 20, 2016
  17. Nov 23, 2016
    • Jeff Henning's avatar
      Implementation of Backwards Equations for T(p,h) & T(p,s) (#6) · b77f63de
      Jeff Henning authored
      * Add Reverse Equations for T(p,h) & T(p,s)
      
      * Update the IF97.cpp verification program for reverse functions.
      
      * Updated README files for Backward Functions.
      
      * Updated README files for Backward Functions.
      
      * Fixed Typos in IF97.cpp verification code and README.md
      b77f63de
  18. Nov 03, 2016
  19. Nov 02, 2016
  20. Oct 20, 2016
  21. Aug 17, 2016
  22. Jul 16, 2016
  23. Mar 24, 2016
  24. Mar 23, 2016
    • henningjp's avatar
      More DRY Saturated Liquid/Vapor Functions · 0292a2b2
      henningjp authored
      I combined everything into parametric calls to RegionOutput with a new
      enumeration for saturation state (IF97SatState).  This cleans things up
      immensely and removes the need for the extra SAT/VAP enumerations in the
      IF97parameters list.
      
      I left the API functions separate as this keeps the interface as clean
      as possible and consistent with the original six base property functions
      (they don't take an enumerated property parameter either, so there are
      six separate functions).  Any calling routine does not need to know
      about the enumerations; just provide pressure for a given property call.
      The function names follow a standard convention and everything goes
      through a call to RegionOutput().
      
      I also moved "region" out of the parameter list for RegionOutput(),
      since I think it will ALWAYS be provided a call to
      RegionDetermination(T,p).   I don't think there would ever be a reason
      to force region equations to extrapolate outside of their intended range
      (e.g. calling RegionOutput( REGION_X, T, p, NONE) for a region not
      determined by T & p).
      0292a2b2
  25. Mar 19, 2016
  26. Mar 18, 2016
Loading