Variable: vhdl-ams-constants

vhdl-ams-constants is a variable defined in vhdl-mode.el.gz.

Value

("phys_q" "phys_eps0" "phys_mu0" "phys_k" "phys_gravity" "phys_ctok"
 "phys_c" "phys_h" "phys_h_over_2_pi" "yocto" "zepto" "atto" "femto"
 "pico" "nano" "micro" "milli" "centi" "deci" "deka" "hecto" "kilo"
 "mega" "giga" "tera" "peta" "exa" "zetta" "yotta" "deca"
 "phys_eps_si" "phys_eps_sio2" "phys_e_si" "phys_e_sio2" "phys_e_poly"
 "phys_nu_si" "phys_nu_poly" "phys_rho_poly" "phys_rho_sio2"
 "ambient_temperature" "ambient_pressure" "ambient_illuminance")

Documentation

List of VHDL-AMS standardized constants.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defconst vhdl-ams-constants
  ;; standard: IEEE Std 1076.1.1-2004
  '(
    ;; package `fundamental_constants'
    "phys_q" "phys_eps0" "phys_mu0" "phys_k" "phys_gravity" "phys_ctok"
    "phys_c" "phys_h" "phys_h_over_2_pi" "yocto" "zepto" "atto" "femto"
    "pico" "nano" "micro" "milli" "centi" "deci" "deka" "hecto" "kilo" "mega"
    "giga" "tera" "peta" "exa" "zetta" "yotta" "deca"
    ;; package `material_constants'
    "phys_eps_si" "phys_eps_sio2" "phys_e_si" "phys_e_sio2" "phys_e_poly"
    "phys_nu_si" "phys_nu_poly" "phys_rho_poly" "phys_rho_sio2"
    "ambient_temperature" "ambient_pressure" "ambient_illuminance"
    )
  "List of VHDL-AMS standardized constants.")