;+ ; NAME: ; rbsp_ac_highpass_response (function) ; ; PURPOSE: ; Calculate the response of the one-pole 10 Hz high-pass analog filter applied ; to RBSP AC channel field signals. ; ; CATEGORIES: ; ; CALLING SEQUENCE: ; resp = rbsp_ac_highpass_response(f) ; ; ARGUMENTS: ; f: (Input, required) A frequency array for which the response of the filter ; is calcuated. The frequency should be in units of Hz. ; ; KEYWORDS: ; None. ; ; COMMON BLOCKS: ; ; EXAMPLES: ; ; SEE ALSO: ; ; HISTORY: ; 2012-08-08: Created by Jianbao Tao, SSL, UC Berkeley. ; ; ; Version: ; ; $LastChangedBy: aaronbreneman $ ; $LastChangedDate: 2020-04-29 11:08:41 -0700 (Wed, 29 Apr 2020) $ ; $LastChangedRevision: 28638 $ ; $URL: svn+ssh://thmsvn@ambrosia.ssl.berkeley.edu/repos/spdsoft/tags/spedas_5_0/general/missions/rbsp/efw/calibration_files/rbsp_ac_highpass_response.pro $ ;- function rbsp_ac_highpass_response, f compile_opt idl2 f0 = 10d ; in units of Hz, -3dB corner frequency I = dcomplex(0, 1) resp = I * f / f0 / (1d + I * f / f0) return, resp end