From a88003ea13c054536f4902b999b4434c68a24c3f Mon Sep 17 00:00:00 2001 From: rearman Date: Wed, 4 Dec 2024 10:50:01 -0500 Subject: [PATCH] Tweaks --- init.el | 4 +--- re/re-refrigeration-defuns.el | 4 ++-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/init.el b/init.el index 20c48d5..07cccdc 100644 --- a/init.el +++ b/init.el @@ -162,8 +162,6 @@ ;; Bespoken framework (setq custom-file (expand-file-name "custom.el" user-emacs-directory)) -(unless (file-exists-p custom-file) (make-empty-file custom-file)) - -(load custom-file) +(load custom-file :no-error-if-file-is-missing) ;;; init.el ends here diff --git a/re/re-refrigeration-defuns.el b/re/re-refrigeration-defuns.el index 9fa6ea9..92d7245 100644 --- a/re/re-refrigeration-defuns.el +++ b/re/re-refrigeration-defuns.el @@ -55,12 +55,12 @@ Inputs are feet/minute, width (in) and height (in)." "Calculate the saturated water pressure at a temp (F)." (+ 0.0182795 (* temp 0.001029904) - (* (square temp) 2.579408e-05) + (* (square temp) (E 2.579408 -5) (* (cube temp) (E 2.400493 -7)) (* (^ temp 4) (E 8.100939 -10)) (* (^ temp 5) (E 3.256805 -11)) (* (^ temp 6) (E -1.001922 -13)) - (* (^ temp 7) (E 2.44161 -16)))) + (* (^ temp 7) (E 2.44161 -16))))) (defun hum-ratio (humidity swp) "Calulate the humidity ratio. -- 2.39.5