;; 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
"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.