Topic 7f Time Domain FDM

Size: px
Start display at page:

Download "Topic 7f Time Domain FDM"

Transcription

1 Course Instructor Dr. Raymond C. Rumpf Office: A 337 Phone: (915) E Mail: rcrumpf@utep.edu Topic 7f Time Domain FDM EE 4386/5301 Computational Methods in EE Topic 7f Time Domain FDM 1 Outline Introduction Time Domain Solution of the Heat Equation Time Domain Solution of Maxwell s Equations Topic 7f Time Domain FDM 1

2 Introduction Topic 7f Time Domain FDM 3 Basic Algorithm Formulation 1. Identify governing equation. Approximate equation using finite differences 3. Solve finite difference equation for the function at the future time value 4. Collect constants into update coefficients. 5. Write final update equation. Implementation 1. Dashboard. Calculate grid 3. Build device on grid 4. Calculate update coefficients 5. Initial unknown function(s) 6. Main loop iterate over time 7. Post process data 8. Visualize data Topic 7f Time Domain FDM 4

3 Notes Time domain FDM does not require linear algebra. Scales nearly linearly Excellent technique for very large scale simulations Excellent for simulating transient response Excellent for incorporating nonlinear devices and materials Excellent technique for visualizing motion and waves Excellent technique for learning about devices Topic 7f Time Domain FDM 5 Time Domain Solution of the Heat Equation Topic 7f Time Domain FDM 6 3

4 Define Problem A long bar of length L is a temperature 0 C. At time t = 0, a 350 C heat source is applied to the far end of the bar while the other end is held at 0 C. Calculate and show how the temperature evolves with time over the length of the bar if the thermal diffusivity (x) is x 0 x L x x5 50sin 0 x L L Topic 7f Time Domain FDM 7 Governing Equation The governing equation is the time domain form of the heat equation. T t T 0 x T x temperature thermal diffusivity t time del operator Material Metal 10 4 Water 10 7 Air 10 5 Nylon 10 7 Wood 10 7 Topic 7f Time Domain FDM 8 4

5 Reduce to 1D T x t t T t x T 0 T x, t T x, t T x, t T x, t x 0 t x y z,, T x t x 0 Topic 7f Time Domain FDM 9 Approximate with Finite Differences Over governing equation is T x t t,, x T x t x 0 Let s make a guess at the finite difference approximation x T x, tt T x, t T xx, t T x, t T xx, t x t Exists at (x, t + t/) Exists at (x, t) 0 Exists at (x,t) Topic 7f Time Domain FDM 10 5

6 Fixing the Finite Difference Equation (1 of ) Solution 1 Interpret the time finite difference as a backward finite difference. T x, tt T x, t T xx, t T x, t T xx, t x t x Exists at xt, 0 Solution Interpret the time finte difference as a forward finitedifference. T xt, T xt, t T xxt, T xt, T xxt, x 0 t x Exists at xt, Topic 7f Time Domain FDM 11 Fixing the Finite Difference Equation ( of ) Solution 3 We interpolate the second term in the equation to exist at t + t/. T x xt, t T xt, t T x xt, t T x xt, T xt, T x xt, x x,, T x t t T x t x x t 0 Exists at (x, t + t/) Exists at (x, t + t/) This is called the Crank Nicholson scheme. Very often, we can get away using Solution 1 or, but the Crank Nicholson scheme is unconditionally stable. Topic 7f Time Domain FDM 1 6

7 Solve for Future Value We will proceed with Solution 1 because it is the simplest, but not necessarily the most accurate or stable. T x, tt T x, t T xx, t T x, t T xx, t x t x Exists at xt, We now write this equation in terms of array indices. T T T T T t x k1 k k k k i i i1 i i1 i 0 Solve for future value of T. t T T T T T k1 k k k k i i i i i i 1 1 x 0 Topic 7f Time Domain FDM 13 Write Update Equation The update equation is T T c T T T k1 k k k k i i i i1 i i1 When performing the update, calculate the new values based only on old values. Do not mix the two! We will have to store the old and the new values in two different arrays to do this. The update coefficient is c i it x The update coefficient does not change with time so it should be calculated before the main time loop. Topic 7f Time Domain FDM 14 7

8 Stability Condition Our finite difference equations couples only adjacent points on the grid. Thus, it is numerically impossible for a number to travel farther than one grid cell in one time step. We need to make sure that the speed of the heat front is slower than what is numerically possible. The stability condition that ensures this is t i 1 x t x i Typically we calculate the time step based on this stability condition. Topic 7f Time Domain FDM 15 Revised Algorithm 1. Initialize MATLAB. Dashboard define all simulation parameters 3. Calculate grid: Nx and dx. 4. Build device on grid: alpha 5. Calculate a stable time step (and number of iterations): dt and NT 6. Calculate update coefficients: [c 1 c c 3 c N ] 7. Initialize arrays: T, T, etc. 8. Main loop iterate over time t a. Update T i all the way across grid (loop over x) b. Enforce boundary conditions c. Record intermediate results (if needed) d. Visualize intermediate results (if needed) 9. Post process results 10. Visualize results 11. Finished! Topic 7f Time Domain FDM 16 8

9 Time Domain Solution of Maxwell s Equations Topic 7f Time Domain FDM 17 Transient Vs. Steady State Topic 7f Time Domain FDM Slide 18 9

10 Time Domain Solution of Maxwell s Equations H t E t t A circulating E field induces a change in the H field at the center of circulation in proportion to the permeability. E t H t t A circulating H field induces a change in the E field at the center of circulation in proportion to the permittivity. Topic 7f Time Domain FDM 19 Fields are Staggered in Both Space and Time H t E t t E t H t t E H tt tt Topic 7f Time Domain FDM 0 t H tt E H t E tt t t 10

11 Update Equations E t H H tt tt t t H H E tt tt t H tt E E tt t t t E E H tt t tt Topic 7f Time Domain FDM 1 Sequence of Code Development Step 1 Basic FDTD Algorithm Basic update equations Topic 7f Time Domain FDM Slide 11

12 Sequence of Code Development Step Add Simple Soft Source Basic update equations Add a soft source Topic 7f Time Domain FDM Slide 3 Sequence of Code Development Step 3 Add Absorbing Boundary Basic update equations Add a soft source Add perfect boundary condition Topic 7f Time Domain FDM Slide 4 1

13 Sequence of Code Development Step 4 Add TF/SF Source Basic update equations Add a soft source Add perfect boundary condition Incorporate TF/SF oneway source Topic 7f Time Domain FDM Slide 5 Sequence of Code Development Step 5 Move Source and Add T & R Basic update equations Add a soft source Add perfect boundary condition Incorporate TF/SF oneway source Move position of source Calculate transmittance and reflectance Topic 7f Time Domain FDM Slide 6 13

14 Sequence of Code Development Step 6 Add Device (Algorithm Done) Basic update equations Add a soft source Add perfect boundary condition Incorporate TF/SF oneway source Move position of source Calculate transmittance and reflectance Add a real device Topic 7f Time Domain FDM Slide 7 Summary of Code Development Sequence Step 1 Implement basic FDTD algorithm Step Add the source Step 3 Add absorbing boundary Step 4 Add one way source Step 5 Calculate transmittance and reflectance Step 6 Add a device Topic 7f Time Domain FDM Slide 8 14

15 Movie of Simple Hard Source Topic 7f Time Domain FDM 9 Movie of Simple Soft Source Topic 7f Time Domain FDM 30 15

16 Movie of TF/SF Soft Source Topic 7f Time Domain FDM 31 Calculating Transmission & Reflection FDTD Simulation Transmission Response time Reflection Response time Topic 7f Time Domain FDM Slide 3 16

17 Animation of Numerical Dispersion Simulation with near zero numerical dispersion... Simulation with strong numerical dispersion... Topic 7f Time Domain FDM Slide 33 D Code Development Sequence Step 1 Basic Update Equations Dirichlet Boundary Condition Dirichlet Boundary Condition Dirichlet Boundary Condition Dirichlet Boundary Condition Topic 7f Time Domain FDM Slide 34 17

18 D Code Development Sequence Step Periodic Boundary Conditions Periodic Boundary Condition Periodic Boundary Condition Periodic Boundary Condition Periodic Boundary Condition Topic 7f Time Domain FDM Slide 35 D Code Development Sequence Step Perfectly Matched Layer y lo PML x lo PML x hi PML y hi PML Topic 7f Time Domain FDM Slide 36 18

19 D Code Development Sequence Step 4 TF/SF Source Periodic Boundary Condition Periodic Boundary Condition Topic 7f Time Domain FDM Slide 37 D Code Development Sequence Step 5 Transmission & Reflection Topic 7f Time Domain FDM Slide 38 19

20 D Code Development Sequence Step 6 Simulate Device Topic 7f Time Domain FDM Slide 39 Summary of D Code Development Sequence Step 1 Basic Update + Dirichlet Step Basic Update + Periodic BC Step 3 Add PML Step 4 TF/SF Step 5 Calculate Response Step 6 Add a Device and Benchmark Topic 7f Time Domain FDM Slide 40 0

21 Real FDTD Simulation Topic 7f Time Domain FDM 41 1

Nonlinear dynamics for signal identification T. L. Carroll Naval Research Lab

Nonlinear dynamics for signal identification T. L. Carroll Naval Research Lab Nonlinear dynamics for signal identification T. L. Carroll Naval Research Lab Multiple radars: how many transmitters are there? Specific Emitter Identification Older transmitters Modern transmitters Transients

More information

The analysis of microstrip antennas using the FDTD method

The analysis of microstrip antennas using the FDTD method Computational Methods and Experimental Measurements XII 611 The analysis of microstrip antennas using the FDTD method M. Wnuk, G. Różański & M. Bugaj Faculty of Electronics, Military University of Technology,

More information

Analysis of Crack Detection in Metallic and Non-metallic Surfaces Using FDTD Method

Analysis of Crack Detection in Metallic and Non-metallic Surfaces Using FDTD Method ECNDT 26 - We.4.3.2 Analysis of Crack Detection in Metallic and Non-metallic Surfaces Using FDTD Method Faezeh Sh.A.GHASEMI 1,2, M. S. ABRISHAMIAN 1, A. MOVAFEGHI 2 1 K. N. Toosi University of Technology,

More information

Fig.1. Railway signal system

Fig.1. Railway signal system 2 2016 International Conference on Lightning Protection (ICLP), Estoril, Portugal Induced Surges in Railway Signaling Systems during an Indirect Lightning Strike Ruihan Qi*, Binghao Li and Y. Du Dept.

More information

A Toolbox of Hamilton-Jacobi Solvers for Analysis of Nondeterministic Continuous and Hybrid Systems

A Toolbox of Hamilton-Jacobi Solvers for Analysis of Nondeterministic Continuous and Hybrid Systems A Toolbox of Hamilton-Jacobi Solvers for Analysis of Nondeterministic Continuous and Hybrid Systems Ian Mitchell Department of Computer Science University of British Columbia Jeremy Templeton Department

More information

Lecture 9. Lab 16 System Identification (2 nd or 2 sessions) Lab 17 Proportional Control

Lecture 9. Lab 16 System Identification (2 nd or 2 sessions) Lab 17 Proportional Control 246 Lecture 9 Coming week labs: Lab 16 System Identification (2 nd or 2 sessions) Lab 17 Proportional Control Today: Systems topics System identification (ala ME4232) Time domain Frequency domain Proportional

More information

Signal-Processing Techniques to Reduce the Sinusoidal Steady-State Error in the FDTD Method

Signal-Processing Techniques to Reduce the Sinusoidal Steady-State Error in the FDTD Method IEEE TRANSACTIONS ON ANTENNAS AND PROPAGATION, VOL. 48, NO. 4, APRIL 2000 585 Signal-Processing Techniques to Reduce the Sinusoidal Steady-State Error in the FDTD Method Levent Gürel, Senior Member, IEEE,

More information

Analysis of Microstrip Circuits Using a Finite-Difference Time-Domain Method

Analysis of Microstrip Circuits Using a Finite-Difference Time-Domain Method Analysis of Microstrip Circuits Using a Finite-Difference Time-Domain Method M.G. BANCIU and R. RAMER School of Electrical Engineering and Telecommunications University of New South Wales Sydney 5 NSW

More information

Antenna Theory and Design

Antenna Theory and Design Antenna Theory and Design SECOND EDITION Warren L. Stutzman Gary A. Thiele WILEY Contents Chapter 1 Antenna Fundamentals and Definitions 1 1.1 Introduction 1 1.2 How Antennas Radiate 4 1.3 Overview of

More information

Lecture 20: Mitigation Techniques for Multipath Fading Effects

Lecture 20: Mitigation Techniques for Multipath Fading Effects EE 499: Wireless & Mobile Communications (8) Lecture : Mitigation Techniques for Multipath Fading Effects Multipath Fading Mitigation Techniques We should consider multipath fading as a fact that we have

More information

Electromagnetic Band Gap Structures in Antenna Engineering

Electromagnetic Band Gap Structures in Antenna Engineering Electromagnetic Band Gap Structures in Antenna Engineering FAN YANG University of Mississippi YAHYA RAHMAT-SAMII University of California at Los Angeles Hfl CAMBRIDGE Щ0 UNIVERSITY PRESS Contents Preface

More information

Transactions on Engineering Sciences vol 3, 1993 WIT Press, ISSN

Transactions on Engineering Sciences vol 3, 1993 WIT Press,  ISSN Simulation of electromagnetic pulse propagation in three-dimensionalfinite-differencetime-domain (FDTD) method using parallel processing techniques W.J. Buchanan, N.K. Gupta Department of Electrical, Electronic

More information

A Diffusion Strategy for the Multichannel Active Noise Control System in Distributed Network

A Diffusion Strategy for the Multichannel Active Noise Control System in Distributed Network 216 International Conference on Computational Science and Computational Intelligence A Diffusion Strategy for the Multichannel Active Noise Control System in Distributed Network Ju-man Song Division of

More information

Fluid-Structure Interaction (FSI) with System Coupling

Fluid-Structure Interaction (FSI) with System Coupling Fluid-Structure Interaction (FSI) with System Coupling Dr Jasper Kidger ANSYS UK Ltd. 1 System Coupling (FSI) Introduction 2 Outline Review of pre-r14 Solutions for ANSYS Fluent Motivation for System Coupling

More information

Strong-Field-Enhanced Spectroscopy in Silicon. Nanoparticle Electric and Magnetic Dipole. Resonance near a Metal Surface

Strong-Field-Enhanced Spectroscopy in Silicon. Nanoparticle Electric and Magnetic Dipole. Resonance near a Metal Surface Supplementary Information Strong-Field-Enhanced Spectroscopy in Silicon Nanoparticle Electric and Magnetic Dipole Resonance near a Metal Surface Zengli Huang, Jianfeng Wang, *, Zhenghui Liu, Gengzhao Xu,

More information

SAR Analysis in a Spherical Inhomogeneous Human Head Model Exposed to Radiating Dipole Antenna for 500 MHz 3 GHz Using FDTD method

SAR Analysis in a Spherical Inhomogeneous Human Head Model Exposed to Radiating Dipole Antenna for 500 MHz 3 GHz Using FDTD method 35 SAR Analysis in a Spherical Inhomogeneous Human Head Model Exposed to Radiating Dipole Antenna for 500 MHz 3 GHz Using FDTD method Md. Faruk Ali 1 Department of Instrumentation Technology, Nazrul Centenary

More information

Biomedical Signals. Signals and Images in Medicine Dr Nabeel Anwar

Biomedical Signals. Signals and Images in Medicine Dr Nabeel Anwar Biomedical Signals Signals and Images in Medicine Dr Nabeel Anwar Noise Removal: Time Domain Techniques 1. Synchronized Averaging (covered in lecture 1) 2. Moving Average Filters (today s topic) 3. Derivative

More information

Differentiable functions (Sec. 14.4)

Differentiable functions (Sec. 14.4) Math 20C Multivariable Calculus Lecture 3 Differentiable functions (Sec. 4.4) Review: Partial derivatives. Slide Partial derivatives and continuity. Equation of the tangent plane. Differentiable functions.

More information

INF3430 Clock and Synchronization

INF3430 Clock and Synchronization INF3430 Clock and Synchronization P.P.Chu Using VHDL Chapter 16.1-6 INF 3430 - H12 : Chapter 16.1-6 1 Outline 1. Why synchronous? 2. Clock distribution network and skew 3. Multiple-clock system 4. Meta-stability

More information

ECE 484 Digital Image Processing Lec 09 - Image Resampling

ECE 484 Digital Image Processing Lec 09 - Image Resampling ECE 484 Digital Image Processing Lec 09 - Image Resampling Zhu Li Dept of CSEE, UMKC Office: FH560E, Email: lizhu@umkc.edu, Ph: x 2346. http://l.web.umkc.edu/lizhu slides created with WPS Office Linux

More information

Compensation of a position servo

Compensation of a position servo UPPSALA UNIVERSITY SYSTEMS AND CONTROL GROUP CFL & BC 9610, 9711 HN & PSA 9807, AR 0412, AR 0510, HN 2006-08 Automatic Control Compensation of a position servo Abstract The angular position of the shaft

More information

Fourier Signal Analysis

Fourier Signal Analysis Part 1B Experimental Engineering Integrated Coursework Location: Baker Building South Wing Mechanics Lab Experiment A4 Signal Processing Fourier Signal Analysis Please bring the lab sheet from 1A experiment

More information

Structure and Synthesis of Robot Motion

Structure and Synthesis of Robot Motion Structure and Synthesis of Robot Motion Motion Synthesis in Groups and Formations I Subramanian Ramamoorthy School of Informatics 5 March 2012 Consider Motion Problems with Many Agents How should we model

More information

Automatic Domain Decomposition for a Black-Box PDE Solver

Automatic Domain Decomposition for a Black-Box PDE Solver Automatic Domain Decomposition for a Black-Box PDE Solver Torsten Adolph and Willi Schönauer Forschungszentrum Karlsruhe Institute for Scientific Computing Karlsruhe, Germany torsten.adolph@iwr.fzk.de

More information

SRI VENKATESWARA COLLEGE OF ENGINEERING AND TECHNOLOGY

SRI VENKATESWARA COLLEGE OF ENGINEERING AND TECHNOLOGY SRI VENKATESWARA COLLEGE OF ENGINEERING AND TECHNOLOGY DEPARTMENT OF ELECTRICAL AND ELECTRONICS ENGINEERING IC 6501 CONTROL SYSTEMS UNIT I - SYSTEMS AND THEIR REPRESETNTATION` TWO MARKS QUESTIONS WITH

More information

A second-order fast marching eikonal solver a

A second-order fast marching eikonal solver a A second-order fast marching eikonal solver a a Published in SEP Report, 100, 287-292 (1999) James Rickett and Sergey Fomel 1 INTRODUCTION The fast marching method (Sethian, 1996) is widely used for solving

More information

ADVANCED MODELING IN COMPUTATIONAL ELECTROMAGNETIC COMPATIBILITY

ADVANCED MODELING IN COMPUTATIONAL ELECTROMAGNETIC COMPATIBILITY ADVANCED MODELING IN COMPUTATIONAL ELECTROMAGNETIC COMPATIBILITY DRAGAN POLJAK, PhD Department of Electronics University of Split, Croatia BICENTENNIAL 1 8 O 7 WILEY 2 O O 7 ICENTENNIAL WILEY-INTERSCIENCE

More information

Waveshaping Synthesis. Indexing. Waveshaper. CMPT 468: Waveshaping Synthesis

Waveshaping Synthesis. Indexing. Waveshaper. CMPT 468: Waveshaping Synthesis Waveshaping Synthesis CMPT 468: Waveshaping Synthesis Tamara Smyth, tamaras@cs.sfu.ca School of Computing Science, Simon Fraser University October 8, 23 In waveshaping, it is possible to change the spectrum

More information

Full Wave Solution for Intel CPU With a Heat Sink for EMC Investigations

Full Wave Solution for Intel CPU With a Heat Sink for EMC Investigations Full Wave Solution for Intel CPU With a Heat Sink for EMC Investigations Author Lu, Junwei, Zhu, Boyuan, Thiel, David Published 2010 Journal Title I E E E Transactions on Magnetics DOI https://doi.org/10.1109/tmag.2010.2044483

More information

Module 1 : Numerical Methods for PDEs : Course Introduction, Lecture 1

Module 1 : Numerical Methods for PDEs : Course Introduction, Lecture 1 Module 1 : 22.520 Numerical Methods for PDEs : Course Introduction, Lecture 1 David J. Willis September 7, 2016 David J. Willis Module 1 : 22.520 Numerical Methods for PDEs : CourseSeptember Introduction,

More information

EC6405 - CONTROL SYSTEM ENGINEERING Questions and Answers Unit - II Time Response Analysis Two marks 1. What is transient response? The transient response is the response of the system when the system

More information

NH 67, Karur Trichy Highways, Puliyur C.F, Karur District DEPARTMENT OF INFORMATION TECHNOLOGY DIGITAL SIGNAL PROCESSING UNIT 3

NH 67, Karur Trichy Highways, Puliyur C.F, Karur District DEPARTMENT OF INFORMATION TECHNOLOGY DIGITAL SIGNAL PROCESSING UNIT 3 NH 67, Karur Trichy Highways, Puliyur C.F, 639 114 Karur District DEPARTMENT OF INFORMATION TECHNOLOGY DIGITAL SIGNAL PROCESSING UNIT 3 IIR FILTER DESIGN Structure of IIR System design of Discrete time

More information

Combining Differential/Integral Methods and Time/Frequency Domain Analysis to Solve Complex Antenna Problems

Combining Differential/Integral Methods and Time/Frequency Domain Analysis to Solve Complex Antenna Problems Combining Differential/Integral Methods and Time/Frequency Domain Analysis to Solve Complex Antenna Problems IEEE Long Island Section MTT-S Jan. 27, 20 Overview of Presentation Antenna design challenges

More information

FDTD CHARACTERIZATION OF MEANDER LINE ANTENNAS FOR RF AND WIRELESS COMMUNICATIONS

FDTD CHARACTERIZATION OF MEANDER LINE ANTENNAS FOR RF AND WIRELESS COMMUNICATIONS Progress In Electromagnetics Research, PIER 4, 85 99, 999 FDTD CHARACTERIZATION OF MEANDER LINE ANTENNAS FOR RF AND WIRELESS COMMUNICATIONS C.-W. P. Huang, A. Z. Elsherbeni, J. J. Chen, and C. E. Smith

More information

USING SYSTEM RESPONSE FUNCTIONS OF

USING SYSTEM RESPONSE FUNCTIONS OF USING SYSTEM RESPONSE FUNCTIONS OF LIQUID PIPELINES FOR LEAK AND BLOCKAGE DETECTION Pedro J. Lee " PhD Di,ssertation, 4th February, 2005 FACULTV OF ENGINEERING, COMPUTER AND MATHEMATICAL SCIENCES School

More information

Introduction to Operational Amplifiers

Introduction to Operational Amplifiers P. R. Nelson ECE 322 Fall 2012 p. 1/50 Introduction to Operational Amplifiers Phyllis R. Nelson prnelson@csupomona.edu Professor, Department of Electrical and Computer Engineering California State Polytechnic

More information

Introduction to RF Simulation and Its Applications

Introduction to RF Simulation and Its Applications Introduction to RF Simulation and Its Applications by Kenneth S. Kundert Presenter - Saurabh Jain What will he talk about? Challenges for RF design and simulations RF circuit characteristics Basic RF building

More information

Characterization of the Radiation Pattern of Antennas via FDTD and Time-Domain Moment Expansion

Characterization of the Radiation Pattern of Antennas via FDTD and Time-Domain Moment Expansion Journal of Microwaves, Optoelectronics and Electromagnetic Applications, Vol. 13, No. 1, June 214 67 Characterization of the Radiation Pattern of Antennas via FDTD and Time-Domain Moment Expansion Glaucio

More information

Chapter 3: Resistive Network Analysis Instructor Notes

Chapter 3: Resistive Network Analysis Instructor Notes Chapter 3: Resistive Network Analysis Instructor Notes Chapter 3 presents the principal topics in the analysis of resistive (DC) circuits The presentation of node voltage and mesh current analysis is supported

More information

Virtual EM Prototyping: From Microwaves to Optics

Virtual EM Prototyping: From Microwaves to Optics Virtual EM Prototyping: From Microwaves to Optics Dr. Frank Demming, CST AG Dr. Avri Frenkel, Anafa Electromagnetic Solutions Virtual EM Prototyping Efficient Maxwell Equations solvers has been developed,

More information

Ansys Designer RF Training Lecture 3: Nexxim Circuit Analysis for RF

Ansys Designer RF Training Lecture 3: Nexxim Circuit Analysis for RF Ansys Designer RF Solutions for RF/Microwave Component and System Design 7. 0 Release Ansys Designer RF Training Lecture 3: Nexxim Circuit Analysis for RF Designer Overview Ansoft Designer Advanced Design

More information

PROJECT PERIODIC REPORT

PROJECT PERIODIC REPORT PROJECT PERIODIC REPORT Publishable Summary Grant Agreement number: 214911 Project acronym: Project title: Funding Scheme: ICESTARS Integrated Circuit/EM Simulation and design Technologies for Advanced

More information

(Refer Slide Time: 3:11)

(Refer Slide Time: 3:11) Digital Communication. Professor Surendra Prasad. Department of Electrical Engineering. Indian Institute of Technology, Delhi. Lecture-2. Digital Representation of Analog Signals: Delta Modulation. Professor:

More information

2. Basic Control Concepts

2. Basic Control Concepts 2. Basic Concepts 2.1 Signals and systems 2.2 Block diagrams 2.3 From flow sheet to block diagram 2.4 strategies 2.4.1 Open-loop control 2.4.2 Feedforward control 2.4.3 Feedback control 2.5 Feedback control

More information

Ionospheric Absorption

Ionospheric Absorption Ionospheric Absorption Prepared by Forrest Foust Stanford University, Stanford, CA IHY Workshop on Advancing VLF through the Global AWESOME Network VLF Injection Into the Magnetosphere Earth-based VLF

More information

EM Noise Mitigation in Electronic Circuit Boards and Enclosures

EM Noise Mitigation in Electronic Circuit Boards and Enclosures EM Noise Mitigation in Electronic Circuit Boards and Enclosures Omar M. Ramahi, Lin Li, Xin Wu, Vijaya Chebolu, Vinay Subramanian, Telesphor Kamgaing, Tom Antonsen, Ed Ott, and Steve Anlage A. James Clark

More information

Title. Author(s) Itoh, Keiichi; Miyata, Katsumasa; Igarashi, Ha. Citation IEEE Transactions on Magnetics, 48(2): Issue Date

Title. Author(s) Itoh, Keiichi; Miyata, Katsumasa; Igarashi, Ha. Citation IEEE Transactions on Magnetics, 48(2): Issue Date Title Evolutional Design of Waveguide Slot Antenna W Author(s) Itoh, Keiichi; Miyata, Katsumasa; Igarashi, Ha Citation IEEE Transactions on Magnetics, 48(2): 779-782 Issue Date 212-2 Doc URLhttp://hdl.handle.net/2115/4839

More information

ESE531 Spring University of Pennsylvania Department of Electrical and System Engineering Digital Signal Processing

ESE531 Spring University of Pennsylvania Department of Electrical and System Engineering Digital Signal Processing University of Pennsylvania Department of Electrical and System Engineering Digital Signal Processing ESE531, Spring 2017 Final Project: Audio Equalization Wednesday, Apr. 5 Due: Tuesday, April 25th, 11:59pm

More information

Patterns in Fractions

Patterns in Fractions Comparing Fractions using Creature Capture Patterns in Fractions Lesson time: 25-45 Minutes Lesson Overview Students will explore the nature of fractions through playing the game: Creature Capture. They

More information

Digitally-Controlled RF Self- Interference Canceller for Full-Duplex Radios

Digitally-Controlled RF Self- Interference Canceller for Full-Duplex Radios Digitally-Controlled RF Self- nterference Canceller for Full-Duplex Radios Joose Tamminen 1, Matias Turunen 1, Dani Korpi 1, Timo Huusari 2, Yang-Seok Choi 2, Shilpa Talwar 2, and Mikko Valkama 1 1 Dept.

More information

The Representation of Fingerprint Minutiae as Defects in a Pattern-Formation System

The Representation of Fingerprint Minutiae as Defects in a Pattern-Formation System The Representation of Fingerprint Minutiae as Defects in a Pattern-Formation System Jonathan Alfson, David Hjelmstad, Lucas Malin, Dominick Ortiz, Wacey Teller Main Idea Main strengths of pattern formation

More information

An acousto-electromagnetic sensor for locating land mines

An acousto-electromagnetic sensor for locating land mines An acousto-electromagnetic sensor for locating land mines Waymond R. Scott, Jr. a, Chistoph Schroeder a and James S. Martin b a School of Electrical and Computer Engineering b School of Mechanical Engineering

More information

Transactions on Engineering Sciences vol WIT Press, ISSN

Transactions on Engineering Sciences vol WIT Press,   ISSN Efficient analysis of high frequency electronic circuits by combining LE-FDTD method with static solutions L.Cecchi, F. Alimenti, P. Ciampolini, L. Roselli, P. Mezzanotte and R. Sorrentino Institute of

More information

System Coupling 14.0 Twoway FSI with ANSYS FLUENT and ANSYS Mechanical

System Coupling 14.0 Twoway FSI with ANSYS FLUENT and ANSYS Mechanical System Coupling 14.0 Twoway FSI with ANSYS FLUENT and ANSYS Mechanical ANSYS Regional Conference 1 Fluid-Structure Interaction Applications Floating thin film Wind Turbine Mitral valve 2 Fluid-structure

More information

About the High-Frequency Interferences produced in Systems including PWM and AC Motors

About the High-Frequency Interferences produced in Systems including PWM and AC Motors About the High-Frequency Interferences produced in Systems including PWM and AC Motors ELEONORA DARIE Electrotechnical Department Technical University of Civil Engineering B-dul Pache Protopopescu 66,

More information

INVESTIGATION OF THE LONGITUDINAL FIELD COMPONENT INSIDE THE GTEM 1750

INVESTIGATION OF THE LONGITUDINAL FIELD COMPONENT INSIDE THE GTEM 1750 INVESTIGATION OF THE LONGITUDINAL FIELD COMPONENT INSIDE THE GTEM 1750 H.M. LOOE, Y. HUANG B.G. LOADER, M.J. ALEXANDER, W. LIANG The University of Liverpool, UK Introduction GTEM (Gigahertz Traverse Electromagnetic)

More information

In association with International Journal Scientific Research in Science and Technology

In association with International Journal Scientific Research in Science and Technology 1st International Conference on Applied Soft Computing Techniques 22 & 23.04.2017 In association with International Journal of Scientific Research in Science and Technology Design and implementation of

More information

FDTD Antenna Modeling for Ultrawideband. Electromagnetic Remote Sensing

FDTD Antenna Modeling for Ultrawideband. Electromagnetic Remote Sensing FDTD Antenna Modeling for Ultrawideband Electromagnetic Remote Sensing A Thesis Presented in Partial Fulfillment of the requirements for the Distinction Project in the College of Engineering at The Ohio

More information

Control Systems Overview REV II

Control Systems Overview REV II Control Systems Overview REV II D R. T A R E K A. T U T U N J I M E C H A C T R O N I C S Y S T E M D E S I G N P H I L A D E L P H I A U N I V E R S I T Y 2 0 1 4 Control Systems The control system is

More information

EE 230 Lecture 23. Nonlinear Op Amp Applications. Waveform Generators

EE 230 Lecture 23. Nonlinear Op Amp Applications. Waveform Generators EE 230 Lecture 23 Nonlinear Op Amp Applications Waveform Generators Quiz 7 An oscillator based upon a comparator with hysteresis is shown. If STAH =2 and SATL =-2, determine the peak value of And the number

More information

A WAVEFORM DIVISION MULTIPLEXING SCHEME FOR FIBER- OPTIC COMMUNICATION SYSTEM

A WAVEFORM DIVISION MULTIPLEXING SCHEME FOR FIBER- OPTIC COMMUNICATION SYSTEM A WAVEFORM DIVISION MULTIPLEXING SCHEME FOR FIBER- OPTIC COMMUNICATION SYSTEM i A WAVEFORM DIVISION MULTIPLEXING SCHEME FOR FIBER- OPTIC COMMUNICATION SYSTEM BY ZEYU HU, B.ENG. (HUAZHONG UNIV. OF SCI.

More information

Transmitter-receiver-transmitter-configured ground-penetrating radars over randomly heterogeneous ground models

Transmitter-receiver-transmitter-configured ground-penetrating radars over randomly heterogeneous ground models RADIO SCIENCE, VOL. 37, NO. 6, 1094, doi:10.1029/2001rs002528, 2002 Transmitter-receiver-transmitter-configured ground-penetrating radars over randomly heterogeneous ground models Levent Gürel and Uğur

More information

Index. Cambridge University Press Silicon Photonics Design Lukas Chrostowski and Michael Hochberg. Index.

Index. Cambridge University Press Silicon Photonics Design Lukas Chrostowski and Michael Hochberg. Index. absorption, 69 active tuning, 234 alignment, 394 396 apodization, 164 applications, 7 automated optical probe station, 389 397 avalanche detector, 268 back reflection, 164 band structures, 30 bandwidth

More information

Wireless PHY: Modulation and Demodulation

Wireless PHY: Modulation and Demodulation Wireless PHY: Modulation and Demodulation Y. Richard Yang 09/11/2012 Outline Admin and recap Amplitude demodulation Digital modulation 2 Admin Assignment 1 posted 3 Recap: Modulation Objective o Frequency

More information

-binary sensors and actuators (such as an on/off controller) are generally more reliable and less expensive

-binary sensors and actuators (such as an on/off controller) are generally more reliable and less expensive Process controls are necessary for designing safe and productive plants. A variety of process controls are used to manipulate processes, however the most simple and often most effective is the PID controller.

More information

Microphonics. T. Powers

Microphonics. T. Powers Microphonics T. Powers What is microphonics? Microphonics is the time domain variation in cavity frequency driven by external vibrational sources. A 1.5 GHz structure 0.5 m long will change in frequency

More information

Digital Signal Processing. VO Embedded Systems Engineering Armin Wasicek WS 2009/10

Digital Signal Processing. VO Embedded Systems Engineering Armin Wasicek WS 2009/10 Digital Signal Processing VO Embedded Systems Engineering Armin Wasicek WS 2009/10 Overview Signals and Systems Processing of Signals Display of Signals Digital Signal Processors Common Signal Processing

More information

Lab 4: Transmission Line

Lab 4: Transmission Line 1 Introduction Lab 4: Transmission Line In this experiment we will study the properties of a wave propagating in a periodic medium. Usually this takes the form of an array of masses and springs of the

More information

On Analysis of Planar Antennas Using FDTD Method

On Analysis of Planar Antennas Using FDTD Method PIERS ONLINE, VOL. 3, NO. 7, 7 9 On Analysis of Planar Antennas Using FDTD Method K. Niikura, R. Kokubo, K. Southisombath, H. Matsui, and T. akabayashi 3 Graduate School of Engineering, Tokai University,

More information

Different Controller Terms

Different Controller Terms Loop Tuning Lab Challenges Not all PID controllers are the same. They don t all use the same units for P-I-and D. There are different types of processes. There are different final element types. There

More information

Variational Ensemble Kalman Filtering applied to shallow water equations

Variational Ensemble Kalman Filtering applied to shallow water equations Variational Ensemble Kalman Filtering applied to shallow water equations Idrissa S Amour, Zubeda Mussa, Alexander Bibov, Antti Solonen, John Bardsley, Heikki Haario and Tuomo Kauranne Lappeenranta University

More information

Lecture 10. Lab next week: Agenda: Control design fundamentals. Proportional Control Proportional-Integral Control

Lecture 10. Lab next week: Agenda: Control design fundamentals. Proportional Control Proportional-Integral Control 264 Lab next week: Lecture 10 Lab 17: Proportional Control Lab 18: Proportional-Integral Control (1/2) Agenda: Control design fundamentals Objectives (Tracking, disturbance/noise rejection, robustness)

More information

Control and Optimization

Control and Optimization Control and Optimization Example Design Goals Prevent overheating Meet deadlines Save energy Design Goals Prevent overheating Meet deadlines Save energy Question: what the safety, mission, and performance

More information

BE. Electronic and Computer Engineering Final Year Project Report

BE. Electronic and Computer Engineering Final Year Project Report BE. Electronic and Computer Engineering Final Year Project Report Title: Development of electrical models for inductive coils used in wireless power systems Paul Burke 09453806 3 rd April 2013 Supervisor:

More information

Outline. Wireless PHY: Modulation and Demodulation. Recap: Modulation. Admin. Recap: Demod of AM. Page 1. Recap: Amplitude Modulation (AM)

Outline. Wireless PHY: Modulation and Demodulation. Recap: Modulation. Admin. Recap: Demod of AM. Page 1. Recap: Amplitude Modulation (AM) Outline Wireless PHY: Modulation and Demodulation Admin and recap Amplitude demodulation Digital modulation Y. Richard Yang 9// Admin Assignment posted Recap: Modulation Objective o Frequency assignment

More information

II. MODELING SPECIFICATIONS

II. MODELING SPECIFICATIONS The 18th Annual IEEE International Symposium on Personal, Indoor and Mobile Radio Communications (PIMRC'07) EFFECT OF METAL DOOR ON INDOOR RADIO CHANNEL Jinwon Choi, Noh-Gyoung Kang, Jong-Min Ra, Jun-Sung

More information

Sampling, interpolation and decimation issues

Sampling, interpolation and decimation issues S-72.333 Postgraduate Course in Radiocommunications Fall 2000 Sampling, interpolation and decimation issues Jari Koskelo 28.11.2000. Introduction The topics of this presentation are sampling, interpolation

More information

ISSUES OF SYSTEM AND CONTROL INTERACTIONS IN ELECTRIC POWER SYSTEMS

ISSUES OF SYSTEM AND CONTROL INTERACTIONS IN ELECTRIC POWER SYSTEMS ISSUES OF SYSTEM AND CONTROL INTERACTIONS IN ELECTRIC POWER SYSTEMS INDO-US Workshop October 2009, I.I.T. Kanpur INTRODUCTION Electric Power Systems are very large, spread over a wide geographical area

More information

The Evolution of Waveform Relaxation for Circuit and Electromagnetic Solvers

The Evolution of Waveform Relaxation for Circuit and Electromagnetic Solvers The Evolution of Waveform Relaxation for Circuit and Electromagnetic Solvers Albert Ruehli, Missouri S&T EMC Laboratory, University of Science & Technology, Rolla, MO with contributions by Giulio Antonini,

More information

Ultra-Wideband Antenna Simulations. Stanley Wang Prof. Robert W. Brodersen January 8, 2002

Ultra-Wideband Antenna Simulations. Stanley Wang Prof. Robert W. Brodersen January 8, 2002 Ultra-Wideband Antenna Simulations Stanley Wang Prof. Robert W. Brodersen January 8, 2002 Outline Antenna Basics Traditional Antenna Design UWB Antenna Design Challenges Tool: Electromagnetic Simulator

More information

UMBC 671 Midterm Exam 19 October 2009

UMBC 671 Midterm Exam 19 October 2009 Name: 0 1 2 3 4 5 6 total 0 20 25 30 30 25 20 150 UMBC 671 Midterm Exam 19 October 2009 Write all of your answers on this exam, which is closed book and consists of six problems, summing to 160 points.

More information

Design of Frequency Selective Band Stop Shield Using Analytical Method

Design of Frequency Selective Band Stop Shield Using Analytical Method 7 Design of Frequency Selective Band Stop Shield Using Analytical Method Mahmoud Fallah, Alireza Ghayekhloo, Ali Abdolali 3-3 Department of Electrical Engineering, Iran University of Science and Technology

More information

Reduced PWM Harmonic Distortion for a New Topology of Multilevel Inverters

Reduced PWM Harmonic Distortion for a New Topology of Multilevel Inverters Asian Power Electronics Journal, Vol. 1, No. 1, Aug 7 Reduced PWM Harmonic Distortion for a New Topology of Multi Inverters Tamer H. Abdelhamid Abstract Harmonic elimination problem using iterative methods

More information

MMC based D-STATCOM for Different Loading Conditions

MMC based D-STATCOM for Different Loading Conditions International Journal of Engineering Research And Management (IJERM) ISSN : 2349-2058, Volume-02, Issue-12, December 2015 MMC based D-STATCOM for Different Loading Conditions D.Satish Kumar, Geetanjali

More information

FUZZY LOGIC CONTROL FOR NON-LINEAR MODEL OF THE BALL AND BEAM SYSTEM

FUZZY LOGIC CONTROL FOR NON-LINEAR MODEL OF THE BALL AND BEAM SYSTEM 11th International DAAAM Baltic Conference INDUSTRIAL ENGINEERING 20-22 nd April 2016, Tallinn, Estonia FUZZY LOGIC CONTROL FOR NON-LINEAR MODEL OF THE BALL AND BEAM SYSTEM Moezzi Reza & Vu Trieu Minh

More information

PAPER Fast S-Parameter Calculation Technique for Multi-Antenna System Using Temporal-Spectral Orthogonality for FDTD Method

PAPER Fast S-Parameter Calculation Technique for Multi-Antenna System Using Temporal-Spectral Orthogonality for FDTD Method 1338 PAPER Fast S-Parameter Calculation Technique for Multi-Antenna System Using Temporal-Spectral Orthogonality for FDTD Method Mitsuharu OBARA a), Student Member, Naoki HONMA, Member, and Yuto SUZUKI,

More information

Automatic Package and Board Decoupling Capacitor Placement Using Genetic Algorithms and M-FDM

Automatic Package and Board Decoupling Capacitor Placement Using Genetic Algorithms and M-FDM June th 2008 Automatic Package and Board Decoupling Capacitor Placement Using Genetic Algorithms and M-FDM Krishna Bharath, Ege Engin and Madhavan Swaminathan School of Electrical and Computer Engineering

More information

Fundamentals of Microelectronics

Fundamentals of Microelectronics Fundamentals of Microelectronics CH1 Why Microelectronics? CH2 Basic Physics of Semiconductors CH3 Diode Circuits CH4 Physics of Bipolar Transistors CH5 Bipolar Amplifiers CH6 Physics of MOS Transistors

More information

Problem Set 1 (Solutions are due Mon )

Problem Set 1 (Solutions are due Mon ) ECEN 242 Wireless Electronics for Communication Spring 212 1-23-12 P. Mathys Problem Set 1 (Solutions are due Mon. 1-3-12) 1 Introduction The goals of this problem set are to use Matlab to generate and

More information

Introduction to Wavelets. For sensor data processing

Introduction to Wavelets. For sensor data processing Introduction to Wavelets For sensor data processing List of topics Why transform? Why wavelets? Wavelets like basis components. Wavelets examples. Fast wavelet transform. Wavelets like filter. Wavelets

More information

Lecture 7 Fiber Optical Communication Lecture 7, Slide 1

Lecture 7 Fiber Optical Communication Lecture 7, Slide 1 Dispersion management Lecture 7 Dispersion compensating fibers (DCF) Fiber Bragg gratings (FBG) Dispersion-equalizing filters Optical phase conjugation (OPC) Electronic dispersion compensation (EDC) Fiber

More information

Digital Image Processing. Lecture 5 (Enhancement) Bu-Ali Sina University Computer Engineering Dep. Fall 2009

Digital Image Processing. Lecture 5 (Enhancement) Bu-Ali Sina University Computer Engineering Dep. Fall 2009 Digital Image Processing Lecture 5 (Enhancement) Bu-Ali Sina University Computer Engineering Dep. Fall 2009 Outline Image Enhancement in Spatial Domain Histogram based methods Histogram Equalization Local

More information

Si-EPIC Workshop: Silicon Nanophotonics Fabrication Directional Couplers

Si-EPIC Workshop: Silicon Nanophotonics Fabrication Directional Couplers Si-EPIC Workshop: Silicon Nanophotonics Fabrication Directional Couplers June 26, 2012 Dr. Lukas Chrostowski Directional Couplers Eigenmode solver approach Objectives Model the power coupling in a directional

More information

EE 308 Spring Preparation for Final Lab Project Simple Motor Control. Motor Control

EE 308 Spring Preparation for Final Lab Project Simple Motor Control. Motor Control Preparation for Final Lab Project Simple Motor Control Motor Control A proportional integral derivative controller (PID controller) is a generic control loop feedback mechanism (controller) widely used

More information

Switched-Current Circuits

Switched-Current Circuits Switched-urrent ircuits Outline: Synthesis and Analysis Techniques Antônio arlos Moreirão de Queiroz Signal Processing aboratory - OPPE Universidade Federal do Rio de Janeiro ntroduction. First-generation

More information

Double-Sided Printed Triangular Bow-Tie Antenna for UWB Communications

Double-Sided Printed Triangular Bow-Tie Antenna for UWB Communications Double-Sided Printed Triangular Bow-Tie Antenna for UWB Communications Ahmed M. Gomaa, Darwish A. E. Mohamed and Mohab A. Mangoud Department of Electronics and Communications Engineering, Arab Academy

More information

RADIOWAVE PROPAGATION: PHYSICS AND APPLICATIONS. Levis, Johnson, Teixeira (ESL/OSU) Radiowave Propagation August 17, / 31

RADIOWAVE PROPAGATION: PHYSICS AND APPLICATIONS. Levis, Johnson, Teixeira (ESL/OSU) Radiowave Propagation August 17, / 31 RADIOWAVE PROPAGATION: PHYSICS AND APPLICATIONS Levis, Johnson, Teixeira (ESL/OSU) Radiowave Propagation August 17, 2018 1 / 31 I. Introduction 1 EM waves and propagation 2 Influence of frequency 3 Propagation

More information

The Chain Rule, Higher Partial Derivatives & Opti- mization

The Chain Rule, Higher Partial Derivatives & Opti- mization The Chain Rule, Higher Partial Derivatives & Opti- Unit #21 : mization Goals: We will study the chain rule for functions of several variables. We will compute and study the meaning of higher partial derivatives.

More information

P Shrikant Rao and Indraneel Sen

P Shrikant Rao and Indraneel Sen A QFT Based Robust SVC Controller For Improving The Dynamic Stability Of Power Systems.. P Shrikant Rao and Indraneel Sen ' Abstract A novel design technique for an SVC based Power System Damping Controller

More information

Feedback Systems in HVAC ASHRAE Distinguished Lecture Series Jim Coogan Siemens Building Technologies

Feedback Systems in HVAC ASHRAE Distinguished Lecture Series Jim Coogan Siemens Building Technologies Feedback Systems in HVAC ASHRAE Distinguished Lecture Series Jim Coogan Siemens Building Technologies ASHRAE, Madison Chapter October, 2014 Agenda Definitions: feedback and closed-loop control Types of

More information