⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sample_and_hold.vhd

📁 springer_-modeling_and_simulation_for_rf_system_design所有配套光盘源码5-11章
💻 VHD
字号:
-- ------------------------------------------------------------- -- Additional material to the book-- Modeling and Simulation for RF System Design-- ---- THIS MODEL IS LICENSED TO YOU "AS IT IS" AND WITH NO WARRANTIES, -- EXPRESSED OR IMPLIED. THE AUTHORS SPECIFICALLY DISCLAIM ALL IMPLIED -- WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.-- THEY MUST NOT HAVE ANY RESPONSIBILITY FOR ANY DAMAGES, FINANCIAL OR-- LEGAL CLAIMS WHATEVER.-- ------------------------------------------------------------- Name:      Sample and Hold Block-- -- Description:-- The input voltage is sampled after time DELAY. The model-- realizes a zero order sample and hold.-- -- Literature:-- -- Dependencies: -- ------------------------------------------------------------- Logical Library         Design unit-- ------------------------------------------------------------- IEEE_proposed           ELECTRICAL_SYSTEMS-- --------------------------------------------------------------- Source:-- sample_and_hold.vhd-- -----------------------------------------------------------library IEEE_proposed;    use IEEE_proposed.ELECTRICAL_SYSTEMS.all;   entity SAMPLE_AND_HOLD is    generic (TSAMPLE  : REAL := 1.0E-3;  -- sampling time [s], MIN: >0.0             DELAY    : REAL := 0.0      -- delay [s], MIN: 0.0             );    port (terminal INP  : ELECTRICAL;    -- controlling terminal          terminal OUTP : ELECTRICAL     -- output terminal         );end entity SAMPLE_AND_HOLD;   architecture IDEAL of SAMPLE_AND_HOLD is    quantity VIN  across              INP;    quantity VOUT across IOUT through OUTP;begin    VOUT == VIN'ZOH(TSAMPLE, DELAY);end architecture IDEAL;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -