09-Architecture Design 游戏架构设计. Ref cornell

Size: px
Start display at page:

Download "09-Architecture Design 游戏架构设计. Ref cornell"

Transcription

1 09-Architecture Design 游戏架构设计 盛斌 Ref cornell

2 Architecture: The Big Picture Architecture: The Big Picture 2 Game Architecture

3 Design Patterns Reusable solution to a reoccurring problem Template, not a single program Tells you how to design 在设计中以下场景是常见的 在全局范围内管理唯一的游戏配置对象 (Singleton) 在全局范围内调用唯一的游戏控制对象 (Singleton) 创建各种各样的僵尸对象 炮塔 子弹 (Factory) 控制 Sprints 的变化过程, 规则 (State&Strategy) 游戏部件 (component) 对象 (Composite) 问题不是知道这些设计模式, 而是要在设计中使用他们

4 2110 Supplemental: Model-View-Controller Pattern Pattern Model Defines and manages the data Responds to messages from the controller Controller Send messages to model in response to events Update view about changes in model 6 Game Architecture

5 Game cycle

6 Limitations of Discrete Model Program only reacts to user input Nothing changes if user does nothing Desired behavior for productivity apps Games continue without input Character animation Clock timers Enemy AI Physics Simulations F G

7 The Game Loop The Game Loop 60 times/s = 16.7 ms Update Draw Receive player input Process player actions Process NPC actions Post-process (e.g. physics) Cull non-visible objects Transform visible objects Draw to backing buffer Display backing buffer 10 Game Architecture

8 The Game Loop and Loop MVC and MVC Model: The game state Model: The game state Value/location of resources Value/location of resources What is in the save file What is in the save file Update View: The draw loop View: The draw loop Focus of upcoming lectures Focus selecting output Controller: The update loop Controller: The update loop Alters the game state Alters the game state Primary topic of this lecture Sprints data updates Draw 11 Game Architecture

9 Video Game on Drawing Drawing needs to be fast! Do as little computation as possible But draw as few objects as possible Is this a contradiction? Need to compute who to draw So drawing less has extra overhead Rule: do not modify game state in draw Any extra computation is local-only

10 Player Input Traditional input is event-driven Events capture state of controller OS/VM generates events for you Listeners react to events Game loop uses polling for input Ask for controller state at start of loop If no change, do no actions that loop

11 Problem with Polling Only one event per update loop Multiple events are lost Example: Fast typing Captures state at beginning Short events are lost Example: Fast clicks Event-driven does not have these problems Captures all events as they happen

12 Player Actions Actions alter the game state Can alter player state: movement Can alter opponent state: damage Player actions correspond to user input Choice is determined by input controller Else action is performed by computer These are your game verbs!

13 Abstract Actions from Input Actions: functions that modify game state move(dx,dy) modifies x, y by dx, dy! attack(o) attacks opponent o! Input controller maps input to actions Read input state from controller Pick an action and call that function Input handler should not alter state directly!

14 NPC: Non-Player Character NPC is an intelligent computer-controlled entity Not a just a physics object Sometimes called an agent NPCs have their own actions/verbs But no input controller to choose Work on sense-think-act cycle Sense: perceive the world around it Think: choose an action to perform Act: update the game state

15 Sense-Think-Act Thinking Maybe very slow! Focus of AI lectures Act should be very fast! Simple arithmetic on fields If game is slow, act only

16 Acting Without Thinking Remember last action Keep doing it! Need verb and parameters Example: Movement Keep track of velocity Apply each game loop

17 Processing NPCs Native solution: sequentially Problem: NPCs react too fast! Idea: only react to what can see Choose actions, but don t perform Another idea: long actions Action takes several loops Emulates a thinking delay

18 Problem: Pathfinding Focus of Game Lab 2 Crucial if top view Major area of research Potentially very slow n NPCs, g grid squares Dijkstra: O(g2) For each NPC: O(ng2)

19 Game Loop Pathing Engine Asynchronous Pathfinding Pathfinding Thread 1 Thread 2 Request path Update Draw Check Buffer Answer Check for request Compute answer Store in buffer 32 Looks like input buffering! Game Architecture

20 Purpose of a Physics Engine Moving objects about the screen Automatics: Without regard to external forces Dynamics: The effect of forces on the screen Collisions between objects Collision detection: Did a collision occur? Collision resolution: What do we do? And more

21 Architecture Design Architecture: The Big Picture 2 Game Architecture

22 Identify Subsystems Subsystem: logical unit of functionality Often reusable over multiple games Implementation details are hidden API describes interaction with rest of system Natural way to break down work Each programmer decides implementation But entire team must agree on the API

23 Design: CRC Cards Class-Responsibility-Collaboration Class: Important class in subsystem Responsibility: What that class does Collaboration: Other classes required May be part of another subsystem English description of your API Responsibilities become methods Collaboration identifies dependencies

24 CRC Card Examples CRC Card Examples Controller Responsibility Pathfinding: Avoiding obstacles AI Controller 7 Architecture Design Collaboration Game Object, Scene Model Strategic AI: Planning future moves Designing Player Class Model, Action Model Character AI: NPC personality Game Object, Level Editor Script Model Responsibility Enumerates game objects in scene Adds/removes game objects to scene Selects object at mouse location Scene Model Game Object Game Object Class Name Collaboration Mouse Event, Game Object

25 Using UML Helping Design 类图 (Class Diagram) 活动图 (Activity Dragram)

26 Architecture Specification Identify Subsystem 用线框图描述, 如果游戏的架构 用文字解释每一部分的功能, 与其他部件的关系 Identify main class in subsystem 类, 主要属性, 主要方法 CRC 表格或类图 Key process 关键技术数据处理流程, 场景故事流程, 用户目标实现流程 活动图或流程图

27 案例研究 : 贪吃蛇

the gamedesigninitiative at cornell university Lecture 10 Game Architecture

the gamedesigninitiative at cornell university Lecture 10 Game Architecture Lecture 10 2110-Level Apps are Event Driven Generates event e and n calls method(e) on listener Registers itself as a listener @105dc method(event) Listener JFrame Listener Application 2 Limitations of

More information

Big Data and High Performance Computing

Big Data and High Performance Computing Big Data and High Performance Computing Big data and high performance computing focus on academic research and technology development in areas of high performance computing platform architecture, parallel

More information

Electrical Engineering

Electrical Engineering Electrical Engineering Educational Objectives This major aims to cultivate well-grounded, practical, creative and all-round research talents who are well developed in morality, intelligence and physical

More information

Slicing of Aspect-Oriented Programs Based on Reduced Dynamic Dependence Graph *

Slicing of Aspect-Oriented Programs Based on Reduced Dynamic Dependence Graph * ISSN 1673-9418 CODEN JKYTA8 E-mail: fcst@vip.163.com Journal of Frontiers of Computer Science and Technology http://www.ceaj.org 1673-9418/2011/05(03)-0229-09 Tel: +86-10-51616056 DOI: 10.3778/j.issn.1673-9418.2011.03.004

More information

WiMAX 技术培训系列 ( 一 ) OFDM 物理层技术初探 MCG 赵昕 2006 年 2 月. All rights reserved 2006, Alcatel Shanghai Bell

WiMAX 技术培训系列 ( 一 ) OFDM 物理层技术初探 MCG 赵昕 2006 年 2 月. All rights reserved 2006, Alcatel Shanghai Bell WiMAX 技术培训系列 ( 一 ) OFDM 物理层技术初探 MCG 赵昕 2006 年 2 月 目录 Page 2 一. 为什么出现 WiMAX? 二. 什么是 WiMAX? 三. 什么是 OFDM/OFDMA? 四.WiMAX 的 PHY 层五.WiMAX 接入过程 Page 3 一. 为什么出现 WiMAX? 一. 为什么出现 WiMAX? 移动通信的发展过程正在从 3Any 向 Olympics

More information

How to Write a Quality Technical Paper and Where to Publish within IEEE 如何撰写高质量科技论文以及在 IEEE 进行论文发表

How to Write a Quality Technical Paper and Where to Publish within IEEE 如何撰写高质量科技论文以及在 IEEE 进行论文发表 How to Write a Quality Technical Paper and Where to Publish within IEEE 如何撰写高质量科技论文以及在 IEEE 进行论文发表 Orignal Speaker, Prof. Saifur Rahman Joseph R. Loring Professor of Electrical and Computer Engineering

More information

A Self-Adaptive Low-Voltage Current Mode ASK Demodulator for RFID Tags

A Self-Adaptive Low-Voltage Current Mode ASK Demodulator for RFID Tags A Self-Adaptive Low-Voltage Current Mode ASK Demodulator for RFID Tags Wei Liu, Yongming Li, Chun Zhang, Zhihua Wang Tsinghua National Laboratory for Information Science and Technology Institute of Microelectronics,

More information

GAMI Newsletter. Foreword. News. News Industry Projects Training Events Contact. News Industry Projects Training Events Contact

GAMI Newsletter. Foreword. News. News Industry Projects Training Events Contact. News Industry Projects Training Events Contact Foreword Dear Partners and Friends, The Global Advanced Manufacturing Institute is aiming at implementing Operational Excellence to manufacturing companies in China. During the first quarter of 2016, we

More information

NX70 Installation Instructions High Performance Pulse Output Counter Module

NX70 Installation Instructions High Performance Pulse Output Counter Module Maximum Value for OEMs SM NX70 Installation Instructions High Performance Pulse Output Counter Module Catalog Number: NX70-PULSE4 Contents English... 3 Chinese... 19 English Contents Important User Information...4

More information

Stars Snub Twilight Premiere 明星怠慢 暮光之城 首映式

Stars Snub Twilight Premiere 明星怠慢 暮光之城 首映式 Stars Snub Twilight Premiere 明星怠慢 暮光之城 首映式 1 Stars Snub Twilight Premiere 明星怠慢 暮光之城 首映式 Dedicated Fans Left Disappointed 忠实的粉丝们大失所望 Read the text below and do the activity that follows. 阅读下面的短文, 然后完成练习

More information

Qualanod Specifications. Edition 1 st January 年 1 月 1 日版

Qualanod Specifications. Edition 1 st January 年 1 月 1 日版 Qualanod - 2017 Specifications Edition 1 st January 2017 2017 年 1 月 1 日版 Fore-runner of Qualanod Qualanod 的前生 1969 The EWAA quality label for anodized aluminium 1969 年 -EWAA( 欧洲锻铝协会 ) 铝阳极氧化质量标志 2 Foundation

More information

SPECIFICATION. 宁波凯普电子有限公司 Ningbo Kepo Electronics Co.,Ltd.

SPECIFICATION. 宁波凯普电子有限公司 Ningbo Kepo Electronics Co.,Ltd. SPECIFICATION Customer : Lomex Applied To : Product Name : Piezo Buzzer Model Name : KPI-G1410C-K9059 : 受 控 Compliance with ROHS( 本品符合 ROHS 指令 ) Signature of Approval Signature of KEPO Approved by Checked

More information

SVPWM 三相电压源型逆变器的死区时间效应可能会导致电压损失, 电流波形畸变和转矩脉动. 为了改善电流波形, 减少转矩脉动, 详细分析了死区时间对输出电压的影响, 并提出了 SVPWM A

SVPWM 三相电压源型逆变器的死区时间效应可能会导致电压损失, 电流波形畸变和转矩脉动. 为了改善电流波形, 减少转矩脉动, 详细分析了死区时间对输出电压的影响, 并提出了 SVPWM A 18 1 2013 2 Vol 18 No 1 JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Feb 2013 SVPWM 150050 三相电压源型逆变器的死区时间效应可能会导致电压损失, 电流波形畸变和转矩脉动 为了改善电流波形, 减少转矩脉动, 详细分析了死区时间对输出电压的影响, 并提出了 SVPWM 死区时间的补偿方法 该方法通过改变传统的

More information

Qualanod Specifications Qualanod 2017 版标准. QUALISINO AGM, Foshan, Josef Schoppig Secretary General

Qualanod Specifications Qualanod 2017 版标准. QUALISINO AGM, Foshan, Josef Schoppig Secretary General Qualanod - 2017 Specifications Qualanod 2017 版标准 QUALISINO AGM, Foshan, 25.07.18 Josef Schoppig Secretary General Fore-runner of Qualanod Qualanod 的前生 1969 The EWAA quality label for anodized aluminium

More information

WiFi 雷达 无所不在的感知 清华大学软件学院

WiFi 雷达 无所不在的感知 清华大学软件学院 WiFi 雷达 无所不在的感知 杨铮 清华大学软件学院 Outline Introduction Background Methods & Applications Conclusion 2 WiFi Signals Everywhere Visualization of WiFi signals by Luis Hernan 3 WiFi as Radar? WiFi Radar Omnipresent

More information

The audience has given us a lot of positive feedback, some typical ones are listed below:

The audience has given us a lot of positive feedback, some typical ones are listed below: NEWSLETTER December 2010 Successful Closing of 2 nd Sharing Best Practice Workshop The 2 nd Sharing Best Practice Workshop held on 2 nd and 3 rd of December, 2010 at the Nansha Grand Hotel cohosted by

More information

Pantomimes 圣诞节上演的话剧. Look Behind You! 就在你身后!

Pantomimes 圣诞节上演的话剧. Look Behind You! 就在你身后! Pantomimes 1 Look Behind You! 就在你身后! Pantomimes 圣诞节上演的话剧 In winter in Britain, many children and adults enjoy going to the theatre to watch a pantomime Pantomimes are a very old form of entertainment,

More information

MBD for ANSYS Simulation

MBD for ANSYS Simulation MBD for ANSYS Simulation 焦晓娟 / 高级工程师 13127889362 2015 ANSYS, Inc. 1 Why do MBD simulation? OutLine The difference between MBD and FEA for Dynamics simulation How do MBD simulation? What is MBD for ANSYS?

More information

Long-Awaited Film 期待已久的影片

Long-Awaited Film 期待已久的影片 Long-Awaited Film 期待已久的影片 1 Long-Awaited Film 期待已久的影片 Stars Turn Out for the Premiere in London 明星亮相伦敦首映式 Read the text below and do the activity that follows. 阅读下面的短文, 然后完成练习 : Sex and the City was a

More information

SMART Manufacturing Technologies - A Chinese Approach to Sustainable Manufacturing-

SMART Manufacturing Technologies - A Chinese Approach to Sustainable Manufacturing- ICSM AMT Center at Tongji University Shanghai SMART Manufacturing Technologies - A Chinese Approach to Sustainable Manufacturing- Dr. Ö.S. Ganiyusufoglu -. 葛兴福 Consultant to Chairman of Shenyang Machine

More information

Journey to the West 西游记

Journey to the West 西游记 Journey to the West 西游记 1 Journey to the West 西游记 The Monkey King in London 孙悟空在伦敦 Read the text below and do the activity that follows. 阅读下面的短文, 然后完成练习 : What do you get when you combine a 16 th century

More information

RACL Activity Class AC Drawing Watercolor Teacher: Liu, Katie WeChat ID: l_katie22

RACL Activity Class AC Drawing Watercolor Teacher: Liu, Katie WeChat ID: l_katie22 Teacher: Liu, Katie lkatie.0322@gmail.com 919-917-3667 WeChat ID: l_katie22 Hi, my name is Katie Liu and I m a senior at Raleigh Charter High School a s well as a RACL alumna! I ve been pursuing art for

More information

Brief Introduction to Degree Program in Control. Science and Engineering (0811)

Brief Introduction to Degree Program in Control. Science and Engineering (0811) Brief Introduction to Degree Program in Control Science and Engineering (0811) I. Brief Introduction to the Discipline 1. Orientation and Goal Southwest Jiaotong University (SWJTU) is one of the oldest

More information

8 English P.20 한국의 P.21 中 文 P.22

8 English P.20 한국의 P.21 中 文 P.22 8 English P. 20 한국의 P. 21 中文 P. 22 인터넷 시스템 이용가이드 络 统 0120-615-919 support@broad-e.co.jp http://b-cubic.com/user/ 英 :If you have any inquiries about settings or connection please contact the Internet

More information

GSM/GPRS. By Mendy Ouzillou Silicon Laboratories Inc. Austin, TX GSM 3GPP (GSM) burst current) GSM900 DCS V

GSM/GPRS. By Mendy Ouzillou Silicon Laboratories Inc. Austin, TX GSM 3GPP (GSM) burst current) GSM900 DCS V GSM/GPRS By Mendy Ouzillou Silicon Laboratories Inc. Austin, TX GSM Q ( ) 3GPP (GSM) burst current) GSM900 DCS1800 50 Ω 3.5 V 25 3.7 V www.silabs.com/pa-calculations 32.75 (GSM) dbm (DCS) 29.75 dbm 1-3)

More information

05-THE WORLD OF A GAME 游戏世界 - 感知与沟通设计. Ref cornell

05-THE WORLD OF A GAME 游戏世界 - 感知与沟通设计. Ref cornell 05-THE WORLD OF A GAME 游戏世界 - 感知与沟通设计 盛斌 Ref cornell THE WORLD OF A GAME Virtual World vs. Real World Huizinga s Magic Cycle Engagement vs. Immersion Setting Dimensions of the world Parts of a Digital

More information

Chapter 6 Basics of Digital Audio

Chapter 6 Basics of Digital Audio Chapter 6 Basics of Digital Audio 6.1 Digitization of Sound 6.2 MIDI: Musical Instrument Digital Interface 6.3 Quantization and Transmission of Audio 6.3 Quantization and Transmission of Audio Coding of

More information

M030 and M040. Operating Manual Genelec M030 and M040 Active Monitoring Loudspeakers 操作手册

M030 and M040. Operating Manual Genelec M030 and M040 Active Monitoring Loudspeakers 操作手册 M030 and M040 Operating Manual Genelec M030 and M040 ctive Monitoring Loudspeakers 操作手册 Quick setup guide 快速设置指南 M030 / M040 Speaker Placement 音箱的摆放 Vertical ngle 垂直方向的角度 L 30 C R L C R 110 LS RS RS LS

More information

关于台词的备注 : 请注意这不是广播节目的逐字稿件 本文稿可能没有体现录制 编辑过程中对节目做出的改变

关于台词的备注 : 请注意这不是广播节目的逐字稿件 本文稿可能没有体现录制 编辑过程中对节目做出的改变 BBC Learning English Listening Page About this script Please note that this is not a word for word transcript of the programme as broadcast. In the recording and editing process changes may have been made

More information

1 st 5G Algorithm Competition SCMA

1 st 5G Algorithm Competition SCMA 1 st 5G Algorithm Competition SCMA Task Description Requirements 要求 : SCMA 下一代无线通信的稀疏码多址接入 多址接入是无线通信物理层最核心的技术之一, 它使得无线基站能区分并同时服务多个终端用户 现有系统采用正交的多址接入方式, 即多个用户通过在不同维度上 ( 频分 时分 码分等 ) 正交划分的资源来接入, 现在 4G 系统中采用的

More information

Mixed Frequency Allocation Strategy for GSM-R

Mixed Frequency Allocation Strategy for GSM-R Mixed Frequency Allocation Strategy for GSM-R Xiao-Li Jiang, Xu Li State Key Laboratory of Rail Traffic Control and Safety (Beijing Jiaotong University), Beijing, 100044, China Abstract: In this paper,

More information

RHT03-SPI Temperature & Humidity Sensor

RHT03-SPI Temperature & Humidity Sensor - Relative humidity and temperature sensor - 相对温度和湿度传感器 - Pre-calculated temperature and humidity read out, no extra calculation needed - 预先计算的温度和湿度读出, 无需额外计算 - Dew Point Calculation possible - 可以计算露点

More information

Table of Contents. DS177-ZH LUXEON V2 Product Datasheet Lumileds Holding B.V. All rights reserved.

Table of Contents. DS177-ZH LUXEON V2 Product Datasheet Lumileds Holding B.V. All rights reserved. Illumination LUXEON V2 卓越性能 更多可用光 久经验证的封装 设计 LUXEON V2 是一种基于芯片级封装 (CSP 的高功率圆顶 LED 针对定向应用 进行了优化 传承了 Lumileds 在同类产品中的领先地位 LUXEON V2 具备 优越的效能和稳健性 采用 3 条式 3535 封装 可通过与 LUXEON TX 辐射模 式相匹配加快产品的上市时间 同时通过在更高驱动电流下提供无与伦比的

More information

The Advanced Digital Microphone System for Acoustic Guitar USER MANUAL

The Advanced Digital Microphone System for Acoustic Guitar USER MANUAL The Advanced Digital Microphone System for Acoustic Guitar USER MANUAL Contents Table of Contents Contents 2 English 3 irig Acoustic Stage 3 Register your irig Acoustic Stage 3 Installation and setup 4

More information

YDS Presentation. KRL series for Inverter Air-con 横浜電子精工株式会社

YDS Presentation. KRL series for Inverter Air-con 横浜電子精工株式会社 YDS Presentation KRL series for Inverter Air-con 2014 横浜電子精工株式会社 CORPORATE PROFILE Company Name Co.,Ltd Date of Establishment Nov. 1940 YDS ( 横浜電子精工株式会社 ) Business Focus Thin Film Resistor Head Office

More information

EMF Safety and Actions in China Telecom

EMF Safety and Actions in China Telecom 4 th ITU Green Standards Week EMF Safety and Actions in China Telecom Tan Rumeng China Telecommunications Corp. 25 September 2014 Outline 31 Background 2 EMF safety in China 3 EMF actions in China Telecom

More information

King Arthur 亚瑟王. A Legendary King 一个具有传奇色彩的国王. Read the text below and do the activity that follows. 阅读下面的短文, 然后完成练习

King Arthur 亚瑟王. A Legendary King 一个具有传奇色彩的国王. Read the text below and do the activity that follows. 阅读下面的短文, 然后完成练习 King Arthur 1 King Arthur 亚瑟王 A Legendary King 一个具有传奇色彩的国王 Read the text below and do the activity that follows. 阅读下面的短文, 然后完成练习 The story of King Arthur is one that has been told for hundreds of years.

More information

High frequency ratio antenna for RFID tags

High frequency ratio antenna for RFID tags High frequency ratio antenna for RFID tags Jieh-Sen Kuo *(1), Jyun-Jie Wang (2), and Chih-Yu Huang (3) (1) Department of Electronic Engineering, Kao-Yuan University, Kaohsiung, Taiwan 821, Republic of

More information

从 新 开始! IEEE 新内容 新服务 新活动

从 新 开始! IEEE 新内容 新服务 新活动 从 新 开始! IEEE 新内容 新服务 新活动 中科院第六届电子资源培训周 湖北武汉,2015 年 4 月 27-30 日 igroup 陈伟 内容 IEEE Xplore 内容更新 IEEE Xplore 功能更新 IEEE/iGroup 与图书馆携手新活动 关于 IEEE World s largest technical membership association with nearly

More information

Mechatronics Engineering Course Introduction

Mechatronics Engineering Course Introduction Mechatronics Engineering Course Introduction Prof. Tianmiao Wang Prof. Li Wen School of Mechanical Engineering and Automation Beihang University Professor biography Tianmiao Wang, Full Professor He worked

More information

Extrapolations from 100 (and 116)

Extrapolations from 100 (and 116) 本作品采用知识共享署名 4.0 国际许可协议进行许可 Extrapolations from 100 (and 116) Medical Library Development and Innovation Forum Institute of Medical Information & Library Chinese Academy of Medical Sciences (CAMS) & Peking

More information

NX70 Installation Instructions High Speed Counter Module

NX70 Installation Instructions High Speed Counter Module Maximum Value for OEMs SM NX70 Installation Instructions High Speed Counter Module Catalog Number: NX70-HSC1, NX70-HSC2 Contents English... 3 Chinese... 23 English Contents Important User Information...4

More information

HETERO JUNCTION FIELD EFFECT TRANSISTOR NE4210M01

HETERO JUNCTION FIELD EFFECT TRANSISTOR NE4210M01 查询 供应商 PRELIMINARY DATA SHEET HETERO JUNCTION FIELD EFFECT TRANSISTOR C to Ku BAND SUPER LOW NOISE AMPLIFIER N-CHANNEL HJ-FET DESCRIPTION The is a Hetero Junction FET that utilizes the hetero junction

More information

电池柜 B32 Battery Cabinet B32. 安装说明 Installation Instruction

电池柜 B32 Battery Cabinet B32. 安装说明 Installation Instruction 电池柜 B Cabinet B 安装说明 Installation Instruction 目录 Contents 一 概述 Summarize 二 电池柜的组成 cabinet composing 三 电池柜的安装步骤 Installation method 四 电池柜的接线图 The wiring diagrams for battery cabinet 敬请周知 操作之前, 请详细阅读使用手册,

More information

A SMALL PASSIVE UHF RFID TAG FOR METALLIC ITEM IDENTIFICATION. Mun Leng Ng, Kin Seong Leong, and Peter H. Cole

A SMALL PASSIVE UHF RFID TAG FOR METALLIC ITEM IDENTIFICATION. Mun Leng Ng, Kin Seong Leong, and Peter H. Cole A SMALL PASSIVE UHF RFID TAG FOR METALLIC ITEM IDENTIFICATION Mun Leng Ng, Kin Seong Leong, and Peter H. Cole Auto-ID Laboratory, School of Electrical and Electronic Engineering, The University of Adelaide

More information

Chinese Neuroinformatics Research and Data Sharing

Chinese Neuroinformatics Research and Data Sharing The 3rd China-US Roudntable on Scientific Data Cooperation Chinese Neuroinformatics Research and Data Sharing Guang Li and Xiaowei Tang Neuroinformatics Working group of China Center for Neuroinformatics,

More information

US SERIES CONNECTOR FOR AUTOMOBILES

US SERIES CONNECTOR FOR AUTOMOBILES US SERIES CONNECTOR FOR AUTOMOBILES Specifications of Terminals 0.64 Inline/ Device mm 2 Applicable wire size(mm 2 ) AWG Cable overall diameter(mm) Applicable tab thickness(mm) Contact resistance initial

More information

Product Specification

Product Specification Product Specification Product Name: 120W micro infrared remote control LED driver LDP-120M170 Product Model: LDP-120R170 Rev. A.1 CE CE Address: Sangtai Industrial Park Guanwai Xiaobaimang Songbai Road

More information

产品规格书 金龙机电股份有限公司 JINLONG MACHINERY & ELECTRONIC CO., LTD. PRODUCT SPECIFICATION. 客户名称 / Buyer Name 客户信息. 客户料号 /Buyer s Part No.

产品规格书 金龙机电股份有限公司 JINLONG MACHINERY & ELECTRONIC CO., LTD. PRODUCT SPECIFICATION. 客户名称 / Buyer Name 客户信息. 客户料号 /Buyer s Part No. 金龙机电股份有限公司 JINLONG MACHINERY & ELECTRONIC CO., LTD. 产品规格书 PRODUCT SPECIFICATION 客户信息 客户名称 / Buyer Name 客户料号 /Buyer s Part No. 客户承认签章 /Buyer s Approval & Signatures 金龙公司 文件编号 /Spec No. KOTL-G-B003 版本 :A/0

More information

英语学科知识与教学能力试题 ( 初级中学 )

英语学科知识与教学能力试题 ( 初级中学 ) 2017 年下半年全国中小学教师资格考试模拟卷 ( 一 ) 英语学科知识与教学能力试题 ( 初级中学 ) 一 单项选择题 ( 本大题共 30 小题, 每小题 2 分, 共 60 分 ) 在每小题列出的四个备选选项中选择一个最佳答案, 请用 2B 铅笔把答题卡上对应题目的答案字母 按要求涂黑 错选 多选或未选均无分 1. Contrary to my expectation, the teacher

More information

Jeffrey S h a w -AFTER THE HISTORY OF THE CINEMA -概念 电影艺术历史之后的电影

Jeffrey S h a w -AFTER THE HISTORY OF THE CINEMA -概念 电影艺术历史之后的电影 -概念 icinema 电影艺术历史之后的电影 正在电影艺术度过它百年时光之迹 Jeffrey Shaw向我们呈现了他的电影装备Q电影在完 成了它的历史使命和建立了厲于它自己整套的术语之后 除了行家的一再重复之外 看似 已不再需要任何改变 交互式电影不是作为电影艺术的后续形式 而是作为对它本身定义 的质疑出现 它并没有开拓増强电影制作新的领域 而是和这个领域分道扬_ 它参考了 这个领域的末端 然后提出了另一个开始和另一个概念

More information

1 ST BELT ROAD INITIATIVE SUMMIT PROVISIONAL PROGRAMME. One Belt One Road Programme, University of Oxford Day 2: 14 th September 2017

1 ST BELT ROAD INITIATIVE SUMMIT PROVISIONAL PROGRAMME. One Belt One Road Programme, University of Oxford Day 2: 14 th September 2017 1 ST BELT ROAD INITIATIVE SUMMIT PROVISIONAL PROGRAMME One Belt One Road Programme, University of Oxford Day 2: 14 th September 2017 Session 1. Digital Economy 数字经济 : Sharing Economy 分享经济 Cybersecurity

More information

FDTD Modeling of Noise in Computer Packages

FDTD Modeling of Noise in Computer Packages FDTD Modeling of Noise in Computer Packages Wiren Dale Becker IBM East Fishkill Raj Mittra University of Illinois at Urbana-Champaign Abstract In this paper, we discuss the electromagnetic modeling of

More information

Production bias, but not parsing complexity, predicts wh-scope comprehension preferences

Production bias, but not parsing complexity, predicts wh-scope comprehension preferences Production bias, but not parsing complexity, predicts wh-scope comprehension preferences Ming Xiang 1, Suiping Wang 2, Juanghua Yang 2, Bo Liang 2!! 1 The University of Chicago, Linguistics! 1 South China

More information

Ansoft HFSS Antenna Design Kit Design Parameters

Ansoft HFSS Antenna Design Kit Design Parameters Ansoft HFSS Antenna Design Kit Arien Sligar 2007 ANSYS, Inc. All rights reserved. 1 ANSYS, Inc. Proprietary Wire Monopole Low Linear Narrow Monopole Radius Feed Gap Monopole Length Ref: Balanis, Constantine.

More information

Appendix 6-3: HFSS 3D Excitations

Appendix 6-3: HFSS 3D Excitations Appendix 6-3: HFSS 3D Excitations 2015.0 Release Introduction to ANSYS HFSS 1 2015 ANSYS, Inc. HFSS Design Setup GUI Mesh Design Setup Solve HPC Geometry Materials Boundaries Solve Setup Excitations 2

More information

Internal Compact Dual-Band Printed Loop Antenna for Mobile Phone Application

Internal Compact Dual-Band Printed Loop Antenna for Mobile Phone Application IEEE TRANSACTIONS ON ANTENNAS AND PROPAGATION, VOL. 55, NO. 5, MAY 2007 1457 Internal Compact Dual-Band Printed Loop Antenna for Mobile Phone Application Yun-Wen Chi and Kin-Lu Wong Abstract A novel dual-band

More information

National Standard of the People's Republic of China 中华人民共和国国家标准

National Standard of the People's Republic of China 中华人民共和国国家标准 UDC GB National Standard of the People's Republic of China 中华人民共和国国家标准 P GB/T 50062 2008 Code for Design of Relaying Protection and Automatic Device of Electric Power Installations 电力装置的继电保护和自动装置设计规范 Issued

More information

用户手册 HE-XE & HE-XT 100, 102, 103, 104, 105

用户手册 HE-XE & HE-XT 100, 102, 103, 104, 105 用户手册 HE-XE & HE-XT 100, 102, 103, 104, 105 HE-XE220C100/HE-XE220C000, HE-XT220C100/HE-XT220C000 HE-XE220C112 / HE-XE220C01, HE-XT220C112 / HE-XT220C012 HE-XE220C114 / HE-XE220C014, HE-XT220C114 / HE-XT220C014

More information

RAN and Core Network Testing for

RAN and Core Network Testing for RAN and Core Network Testing for 5G Sr. BD Manager, Head of Carrier Business, APAC IXIA Solutions Group/ Keysight Tak Yamakawa ISG IXIA Solutions Group/Keysight W E M A K E N E T W O R K S S T R O N G

More information

Technology. F. Tabatabai, Member, IEEE, H.S. Al-Raweshidy, Senior Member, IEEE. filter, normally do not possess high quality factor at the

Technology. F. Tabatabai, Member, IEEE, H.S. Al-Raweshidy, Senior Member, IEEE. filter, normally do not possess high quality factor at the Proceedings of Asia-Pacific Microwave Conference 2007 C and Ka-Band Wide Bandpass Filter Using LTCC Technology F. Tabatabai, Member, IEEE, H.S. Al-Raweshidy, Senior Member, IEEE Brunel University, Department

More information

V GG -V TO. rout = Saturation Region I OUT. Vout V SAT V GS V OUT. Sheet 1 of 10. Cascode Current Mirror

V GG -V TO. rout = Saturation Region I OUT. Vout V SAT V GS V OUT. Sheet 1 of 10. Cascode Current Mirror 1 of 10 Cascode Current Mirror he main property/feature of a current source/sink is that the current though the device is independent of the voltage across it. Figure 1 shows the most basic of current

More information

Multi-Channel CMOS Front-End IC for Physiological Signal Acquisition 生理信号采集的多通道 CMOS 模拟前端集成电路设计 张金勇王磊于力

Multi-Channel CMOS Front-End IC for Physiological Signal Acquisition 生理信号采集的多通道 CMOS 模拟前端集成电路设计 张金勇王磊于力 Vol 3 No9 / Sep 29 CMOS Front-End IC for Physiological Signal Acquisition 生理信号采集的多通道 CMOS 模拟前端集成电路设计 张金勇王磊于力 ABSTRACT A compacted and low-offset multi-channel CMOS front-end IC for physiological signal

More information

Analog Applications 模拟应用期刊 Journal

Analog Applications 模拟应用期刊 Journal Analog Applications 模拟应用期刊 Journal Second 015 年第 Quarter 季度 015 Copyright 015 Texas 德州仪器 Instruments 015 年版权所有 Incorporated. All rights reserved. Analog Applications Journal 模拟应用期刊 Contents 目录 引言 Introduction......3

More information

MIPI 技术及物理层测试的挑战. 是德科技 (Keysight) 携手 MIPI 联盟和 Synopsys 共同推动 MIPI 技术发展. Page 1

MIPI 技术及物理层测试的挑战. 是德科技 (Keysight) 携手 MIPI 联盟和 Synopsys 共同推动 MIPI 技术发展. Page 1 MIPI 技术及物理层测试的挑战 是德科技 (Keysight) 携手 MIPI 联盟和 Synopsys 共同推动 MIPI 技术发展 Page 1 内容安排 第一部 MIPI 联盟简介 中国成员 规范框架以及未来走向 第二部 Synopsys 的 MIPI 相关 IP 技术及其与 UFS/SSIC/M-PCIe 的互操作性 第三部 MIPI 物理层发展规划以及电气特征测试方案 MIPI 联盟 移动及相关产业的接口规范

More information

学号 B UDC: 博士学位论文 KURT VONNEGUT S DECONSTRUCTION AND RECONSTRUCTION OF THE REAL WORLD AND THE FICTIONAL WORLD AND

学号 B UDC: 博士学位论文 KURT VONNEGUT S DECONSTRUCTION AND RECONSTRUCTION OF THE REAL WORLD AND THE FICTIONAL WORLD AND 学校编码 10384 分类号 密级 学号 B9904004 UDC: 博士学位论文 KURT VONNEGUT S DECONSTRUCTION AND RECONSTRUCTION OF THE REAL WORLD AND THE FICTIONAL WORLD AND HIS TENDENCY TOWARD NEW HISTORICISM 库尔特冯内古特对现实世界与小说世界的解构与重构及其新历史主义倾向

More information

Ecological Characteristics of Information and Its Scientific Research 1

Ecological Characteristics of Information and Its Scientific Research 1 Ecological Characteristics of Information and Its Scientific Research 1 Xiaohui ZOU 1,2 *, Shunpeng ZOU 1,2 and Lijun Ke 2 1 China University of Geosciences (Beijing) Institute of Higher Education; 949309225@qq.com

More information

3DD13005ED 主要参数 MAIN CHARACTERISTICS

3DD13005ED 主要参数 MAIN CHARACTERISTICS 主要参数 MAIN CHAACTEISTICS I C V CEO P C (IPAK/126/126S/220HF) P C (DPAK/TO-252) P C (TO-220C/262/263) NPN 型高压功率开关晶体管 HIGH VOLTAGE FAST-SWITCHING NPN POWE TANSISTO 4A 400V 40W 50W 75W 用途 节能灯 电子镇流器 高频开关电源

More information

SPECIFICATION FOR APPROVAL

SPECIFICATION FOR APPROVAL FOR APPROVAL CUSTOMER : 01097 REV.00 ARTICLE: STANDARD : UL/GS/CE/SAA 桌面式 MODEL NO. : DYS40-240166W OUR PART NO.: DYS40-240166-16922 YOUR PART NO.: INPUT : 100-240V AC 50/60Hz OUTPUT: 24.0V DC 1.66A 供应商确认

More information

第 21 届中国国际工业博览会. China International Industry Fair 2019

第 21 届中国国际工业博览会. China International Industry Fair 2019 第 21 届中国国际工业博览会 China International Industry Fair 2019 国家会展中心 ( 上海 ) 2019 年 9 月 17 日 -21 日 National Exhibition and Convention Center (Shanghai) 17-21 September 2019 组织机构 ORGANIZING STRUCTURE 主办单位 工业和信息化部

More information

ctbuh.org/papers The City Re-Imagined Title: Paul Friedli, Head of Transit Management, Schindler Max Schwitalla, Founder, Studio Schwitalla

ctbuh.org/papers The City Re-Imagined Title: Paul Friedli, Head of Transit Management, Schindler Max Schwitalla, Founder, Studio Schwitalla ctbuh.org/papers Title: Authors: Subject: Keywords: The City Re-Imagined Paul Friedli, Head of Transit Management, Schindler Max Schwitalla, Founder, Studio Schwitalla Vertical Transportation Integrated

More information

INNOVATION THEORY AN EPISTEMOLOGICAL ASPECTS

INNOVATION THEORY AN EPISTEMOLOGICAL ASPECTS 2012 POLISH JOURNAL OF MANAGEMENT STUDIES INNOVATION THEORY AN EPISTEMOLOGICAL ASPECTS Aneta Pachura * Abstract: The character and intensity of the innovations process of goods, processes or organisational

More information

Product Specification

Product Specification Product Specification Product Name: 150W micro infrared remote control LED driver Product Model: LDP-150M054 CE UL LDP-150R054 CE UL Rev. A.1 Address: Sangtai Industrial Park Guanwai Xiaobaimang Songbai

More information

Chapter 8 Expanding abroad: from emerging markets

Chapter 8 Expanding abroad: from emerging markets Chapter 8 Expanding abroad: from emerging markets Chinese Firms as examples Dr. Youzhen Zhao 1 Outward FDI from China (1990-2011) (In 100 million US$) 746.5 2011 Source: World Investment Report (data for

More information

型号 :ZLE12864B-FFSSWE-NAA

型号 :ZLE12864B-FFSSWE-NAA 修改记录 版本号 :. 型号 :ZLE2864B-FFSSWE-NAA 版本号 日期 PAGE 内容. 28-9-9 NEW RELEASE ================================================================== ZLE2864B 28X64 DOTS GRAPHICS MODULE PAGE: OF29 LCD MODULE NUMBERING

More information

PRODUCTION ENGINEERING ARCHIVES. Chip breaking phenomenon during cutting steel and polymer materials. 1. Introduction.

PRODUCTION ENGINEERING ARCHIVES. Chip breaking phenomenon during cutting steel and polymer materials. 1. Introduction. PROUTION ENGINEERING RHIVES 16 (2017) 37 42 PROUTION ENGINEERING RHIVES ISSN 2353-5156 (print) ISSN2353-7779 (online) Exist since 4 th quarter 2013 vailable online at www.qpij.pl/production-engineering-archives

More information

Automated impact device with non-synchronous impacts: a practical solution for modal testing during operation *

Automated impact device with non-synchronous impacts: a practical solution for modal testing during operation * 452 Ong et al. / J Zhejiang Univ-Sci A (Appl Phys & Eng) 208 9(6):452-460 Journal of Zhejiang University-SCIENCE A (Applied Physics & Engineering) ISSN 673-565X (Print); ISSN 862-775 (Online) www.jzus.zju.edu.cn;

More information

操作说明书 Operating Instructions

操作说明书 Operating Instructions 267 操作说明书 Operating Instructions Class 267 Operating Instructions 267 操作说明书 Table of Contents/ 目录 1 General... 6 1.1 1.2 1.3 1.4 Class 267- with subclasses... 6 References and illustration... 6 Instaling

More information

项目进展 北斗剖面浮标数据接收共享系统研制 等课题 获国家重点实验室自主研究课题资助

项目进展 北斗剖面浮标数据接收共享系统研制 等课题 获国家重点实验室自主研究课题资助 项目进展 北斗剖面浮标数据接收共享系统研制 等课题 获国家重点实验室自主研究课题资助 在卫星海洋环境动力学国家重点实验室的重视和支持下, 由中国 Argo 实时资料中心刘增宏副研究员 吴晓芬助理研究员等负责的 北斗剖面浮标数据接收共享系统研制 西太平洋暖池海域热盐含量变异研究 和 西北太平洋台风海域实时海洋环境智能服务平台研制 等三个课题获得了自主研究课题的资助, 课题执行期为两年 (2015-2016

More information

Product Specification

Product Specification Product Specification Product Name: 60W micro infrared remote control LED driver Product Model: LDP-060M080 CE UL LDP-060R080 CE UL Rev. A.2 Address: Sangtai Industrial Park Guanwai Xiaobaimang Songbai

More information

本科专业人才培养计划 机械学科大类分册 华中科技大学教务处 二 O 一五年七月

本科专业人才培养计划 机械学科大类分册 华中科技大学教务处 二 O 一五年七月 本科专业人才培养计划 机械学科大类分册 华中科技大学教务处 二 O 一五年七月 目 录 1 3 * 20 * 34 *46 62 75 80 81 * 91 * 99 * 108 116 126 128 * 146 * 155 166 178 179 193 207 注 : 带 * 者不属于机械学科大类专业 1 机械科学与工程学院 华中科技大学机械科学与工程学院前身系华中工学院机械工程系,1988

More information

绘画中的 树 和 ( 或 ) 石头 Tree and/or Stone in Painting

绘画中的 树 和 ( 或 ) 石头 Tree and/or Stone in Painting 2014 北京大学 - 德国柏林自由大学工作坊 PKU-FUB Art History Workshop, 2014 绘画中的 树 和 ( 或 ) 石头 Tree and/or Stone in Painting 北京大学艺术学院美术学系 德国柏林自由大学艺术史系 School of Arts PKU & Institute of Art History FUB 1 /5-10, 2014 1 时间

More information

微电子技术 纳米技术 人机交互 与人机协同

微电子技术 纳米技术 人机交互 与人机协同 EEG Tensor Discriminant Analysis for Brain Computer Interface Liqing Zhang MOE-Microsoft Microsoft Key Lab for Intelligent Computing and Intelligent Systems, Shanghai Jiao Tong University 2010.11.6, Nanjing

More information

¼'' TS 法律声明 10. MUSIC Tribe

¼'' TS 法律声明 10. MUSIC Tribe NEUTRON Paraphonic Analog and Semi-Modular Synthesizer with Dual 3340 VCOs, Multi-Mode VCF, 2 ADSRs, BBD Delay and Overdrive Circuit in a Eurorack Format 2 NEUTRON 快速启动向导 3 重要的安全须知 ¼'' TS 1. 2. 3. 4. 5.

More information

BAUHAUS. Progression / Precision Intervals / Columns. Progression. Precision. Intervals. Columns

BAUHAUS. Progression / Precision Intervals / Columns. Progression. Precision. Intervals. Columns Progression / Precision Intervals / Columns Progression Precision Intervals Columns INSPIRED. INSPIRING. 源于灵感智启灵感 Walter Gropius opened the doors to Bauhaus; he established Staatliches Bauhaus Weimar at

More information

A2 产品技术规格书 深圳市爱普泰科电子有限公司 ABTEC-A2 音频测试分析仪 前面板图 后面板图 ABTEC-WI099-A0 产品 型号 产品 功能 产品 版本 V1.0 产品 外观

A2 产品技术规格书 深圳市爱普泰科电子有限公司 ABTEC-A2 音频测试分析仪 前面板图 后面板图 ABTEC-WI099-A0 产品 型号 产品 功能 产品 版本 V1.0 产品 外观 深圳市爱普泰科电子有限公司 T:0755-8638 0078 E:sales@szaptk.com www.szaptk.com 地址 : 深圳市龙华观澜大富工业区 20 号硅谷动力智能终端产业园 A4 栋 5 楼 产品技术规格书 ABTEC-WI099-A0 产品 型号 ABTEC- 产品 功能 音频测试分析仪 产品 版本 V1.0 前面板图 产品 外观 后面板图 2014.03.22 序号 NO.

More information

关于台词的备注 : 请注意这不是广播节目的逐字稿件 本文稿可能没有体现录制 编辑过程中对节目做出的改变

关于台词的备注 : 请注意这不是广播节目的逐字稿件 本文稿可能没有体现录制 编辑过程中对节目做出的改变 BBC Learning English 15 Minute Programmes 15 分钟节目 About this script Please note that this is not a word for word transcript of the programme as broadcast. In the recording and editing process, changes

More information

LM117/LM217/LM V to 37V Adjustable voltage regulators. Feature summary. Description. Order code

LM117/LM217/LM V to 37V Adjustable voltage regulators. Feature summary. Description. Order code 1.2V to 37V Adjustable voltage regulators Feature summary Output voltage range: 1.2 to 37V Output current in excess of 1.5A 0.1% Line and load regulation Floating operation for high voltages Complete series

More information

Version:2.0 M1+/M2/M3

Version:2.0 M1+/M2/M3 Version:2.0 M1+/M2/M3 Safety Information CAUTION: To reduce the risk of electric shock, do not remove any cover(or the rear section). No user serviceable parts inside. Refer servicing to qualified service

More information

ULTRAWIDEBAND (UWB) communications have attracted

ULTRAWIDEBAND (UWB) communications have attracted 294 IEEE ANTENNAS AND WIRELESS PROPAGATION LETTERS, VOL. 5, 2006 Circular and Elliptical CPW-Fed Slot and Microstrip-Fed Antennas for Ultrawideband Applications Evangelos S. Angelopoulos, Argiris Z. Anastopoulos,

More information

Elements of Art Principles of Design Colouring/shading Techniques Abstract Art

Elements of Art Principles of Design Colouring/shading Techniques Abstract Art MAYFLOWER SECONDARY SCHOOL 2015 SEMESTRAL ASSESSMENT 2 Level: Sec 2 NA Subject Paper Duration Format Topics Comments Art In progress, until end Term 3/ early term 4 Project: Abstract Art Harmony & Emphasis

More information

Information Platform Construction of Green Technology Bank. WANG Zhen Director of Shanghai Science& Technology Development and Exchange Center

Information Platform Construction of Green Technology Bank. WANG Zhen Director of Shanghai Science& Technology Development and Exchange Center Information Platform Construction of Green Technology Bank WANG Zhen Director of Shanghai Science& Technology Development and Exchange Center 1 Background 0 CONTENTS 2 3 4 Functional Orientation Operation

More information

Unit 6: Movies. Film Genre ( 可加 film 或 movie) Adjectives. Vocabulary. animation. action. drama. comedy. crime. romance. horror

Unit 6: Movies. Film Genre ( 可加 film 或 movie) Adjectives. Vocabulary. animation. action. drama. comedy. crime. romance. horror Unit 6: Movies Vocabulary Film Genre ( 可加 film 或 movie) action comedy romance horror thriller adventure animation drama crime science fiction (sci-fi) musical war Adjectives exciting fascinating terrifying

More information

PRODUCT SUPPORT MANUAL PathFinder 3 Search and Rescue Transponder. Model No.: SART-3 Product No.: 2714, 2714NH Y Rev. J

PRODUCT SUPPORT MANUAL PathFinder 3 Search and Rescue Transponder. Model No.: SART-3 Product No.: 2714, 2714NH Y Rev. J PRODUCT SUPPORT MANUAL PathFinder 3 Search and Rescue Transponder Model No.: SART-3 Product No.: 2714, 2714NH Y1-03-0170 Rev. J About ACR Electronics ACR Electronics www.acrelectronics.com, designs and

More information

为了满足客户不同的焊接需求需要, 莱丹研发了最新的 HEMTEK ST 焊接导向件, 可应用于厚达 4mm/0.16 英寸材料的焊接

为了满足客户不同的焊接需求需要, 莱丹研发了最新的 HEMTEK ST 焊接导向件, 可应用于厚达 4mm/0.16 英寸材料的焊接 1. Produkt-Neuheiten / Product News NEW Guide for the HEMTEK ST Plastic Welding > Technical Textiles & Industrial Fabrics 1.1 New Guide - HEMTEK ST 最新可调节焊接导向件 (4mm) 为了满足客户不同的焊接需求需要, 莱丹研发了最新的 HEMTEK ST

More information

The Simulation Research of the reamer of the cutter suction. dredger based on ADAMS

The Simulation Research of the reamer of the cutter suction. dredger based on ADAMS International Journal of Research in Engineering and Science (IJRES) ISSN (Online): 30-9364, ISSN (Print): 30-9356 Volume 3 Issue 1 ǁ December. 015 ǁ PP.07-13 The Simulation Research of the reamer of the

More information

EJX / EJA-E series. For the description on the applicable page of users manual as shown in the item 1, please use revised information as shown in 2.

EJX / EJA-E series. For the description on the applicable page of users manual as shown in the item 1, please use revised information as shown in 2. EJX / EJA-E series Change No. 15-013 For the description on the applicable page of users manual as shown in the item 1, please use revised information as shown in 2. 1. Applicable Users and Page IM No.

More information

DESIGN, SIMULATION, FABRICATION AND TESTING OF IMPROVED HYBRID WIDEBAND MICROSTRIP BALUN CIRCUITS AT 2.4 GHz

DESIGN, SIMULATION, FABRICATION AND TESTING OF IMPROVED HYBRID WIDEBAND MICROSTRIP BALUN CIRCUITS AT 2.4 GHz DESIGN, SIMULATION, FABRICATION AND TESTING OF IMPROVED HYBRID WIDEBAND MICROSTRIP BALUN CIRCUITS AT 2.4 GHz Preeti Leela Nelapati B.Tech, Jawaharlal Nehru Technological University, 26 Vijay Desai B.Tech,

More information

TPS20xxC, TPS20xxC-2 ZHCS443G JUNE 2011 REVISED JULY 2013

TPS20xxC, TPS20xxC-2   ZHCS443G JUNE 2011 REVISED JULY 2013 1 GND IN IN EN or EN DGN, DGK (Top View) 1 8 7 3 PAD DGN Only OUT OUT OUT TPSxxC, TPSxxC- www.ti.com.cn ZHCS3G JUNE 11 REVISED JULY 13 限流配电开关 1 特性说明 单一电源开关系列产品 TPSxxC 和 TPSxxC- 配电开关系列产品用于诸 与现有的德州仪器 (TI)

More information

AUTOMATIC Gain Control (AGC) circuits are employed

AUTOMATIC Gain Control (AGC) circuits are employed IEEE TRANSACTIONS ON CIRCUITS AND SYSTEMS II: ANALOG AND DIGITAL SIGNAL PROCESSING, VOL. 45, NO. 3, MARCH 1998 283 On the Design of Constant Settling Time AGC Circuits John M. Khoury, Senior Member, IEEE

More information