ElectroMagnetic

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Electromagnetic Field Theory Fundamentals 2nd ed - B. Guru, H. Hiziroglu 本书简明易懂,贴近读者,深受广大师生欢迎。   本书包含许多实例、问题、章末小结和适当的背景材料。书中首先介绍静电磁场和静磁场的基本概念,继而讲解麦克斯韦尔方程、电磁传播、电磁传输和电磁辐射。另外,还增加了关于有限元法和有限差分法的章节以及关于史密斯圆图的详细附录。   1 ELECTROMAGNETIC FIELD THEORY 1.1 Introduction 1.2 Field Concept 1.3 Vector Analysis 1.4 Differential and Integral Formulations 1.5 Static Fields 1.6 Time-Varying Fields 1.7 Applications of Time-Varying Fields 1.8 Numerical Solutions 1.9 Further Study 2 VECTOR ANALYSIS 2.1 Introduction 2.2 Scalar and Vector Quantities 2.3 Vector Operations 2.4 The Coordinate Systems 2.5 Scalar and Vector Fields 2.6 Differential Elements of Length, Surface, and Volume 2.7 Line, Surface, and Volume Integrals 2.8 The Gradient of a Scalar Function 2.9 Divergence of a Vector Field 2.10 The Curl of a Vector Field 2.11 The Laplacian Operator 2.12 Some Theorems and Field Classifications 2.13 Vector Identities 2.14 Summary 2.15 Review Questions 2.16 Problems 3 ELECTROSTATICS 3.1 Introduction 3.2 Coulomb’s Law 3.3 Electric Field Intensity 3.4 Electric Flux and Electric Flux Density 3.5 The EIectric Potential 3.6 Electric Dipole 3.7 Materials in an Electric Field 3.8 Energy Stored in an EIectric Field 3.9 Boundary Conditions 3.10 Capacitor and Capacitance 3.11 Poisson’s and Laplace’s Equations 3.12 Method of Images 3.13 Summary 3.14 Review Questions 3.15 Problems 4 STEADY ELECTRIC CURRENTS 4.1 Introduction 4.2 Nature of Current and Current Density 4.3 Resistance of a Conductor 4.4 The Equation Of Continuity 4.S Relaxation Time 4.6 Joule’s Law 4.7 Steady Current in a Diode 4.8 Boundary Conditions for Current Density 4.9 Analogy Between D and J 4.10 The Electromotive Force 4.11 Summary 4.12 Review Questions 4.13 Problems 1 ELECTROMAGNETIC FIELD THEORY 1.1 Introduction 1.2 Field Concept 1.3 Vector Analysis 1.4 Differential and Integral Formulations 1.5 Static Fields 1.6 Time-Varying Fields 1.7 Applications of Time-Varying Fields 1.8 Numerical Solutions 1.9 Further Study 2 VECTOR ANALYSIS 2.1 Introduction 2.2 Scalar and Vector Quantities 2.3 Vector Operations 2.3.1 Vector Addition 2.3.2 Vector Subtraction 2.3.3 Multiplication of a Vector by a Scalar 2.3.4 Product of Two Vectors 2.4 The Coordinate Systems 2.4.1 Rectangular Coordinate System 2.4.2 Cylindrical Coordinate System 2.4.3 Spherical Coordinate System 2.5 Scalar and Vector Fields 2.6 Differential Elements of Length, Surface, and Volume 2.7 Line, Surface, and Volume Integrals 2.8 The Gradient of a Scalar Function 2.9 Divergence of a Vector Field 2.10 The Curl of a Vector Field 2.11 The Laplacian Operator 2.12 Some Theorems and Field Classifications 2.13 Vector Identities 2.14 Summary 2.15 Review Questions 2.16 Problems 3 ELECTROSTATICS 3.1 Introduction 3.2 Coulomb’s Law 3.3 Electric Field Intensity 3.3.1 Electric Field Intensity Due to Charge Distributions 3.4 Electric Flux and Electric Flux Density 3.4.1 Definition of Electric Flux 3.4.2 Gauss’s Law 3.5 The EIectric Potential 3.6 Electric Dipole 3.7 Materials in an Electric Field 3.8 Energy Stored in an EIectric Field 3.9 Boundary Conditions 3.10 Capacitor and Capacitance 3.11 Poisson’s and Laplace’s Equations 3.12 Method of Images 3.13 Summary 3.14 Review Questions 3.15 Problems 4 STEADY ELECTRIC CURRENTS 4.1 Introduction 4.2 Nature of Current and Current Density 4.3 Resistance of a Conductor 4.4 The Equation Of Continuity 4.S Relaxation Time 4.6 Joule’s Law 4.7 Steady Current in a Diode 4.8 Boundary Conditions for Current Density 4.9 Analogy Between D and J 4.10 The Electromotive Force 4.11 Summary 4.12 Review Questions 4.13 Problems 5 MAGNETOSTATICS 6 APPLICATIONS OF STATIC FIELDS 7 TIME-VARYING ELECTROMAGNETIC FIELDS 8 PLANE WAVE PROPAGATION 9 TRANSMISSION LINES 10 WAVEGUIDES AND CAVITY RESONATORS 11 ANTENNAS 12 COMPUTER-AIDED ANALYSIS OF ELECTROMAGNETIC FIELDS APPENDIX A SMITH CHART AND ITS APPLICATIONS APPENDIX B COMPUTER PROGRAMS FOR VARIOUS PROBLEMS APPENDIX C USEFUL MATHEMATICAL TABLES INDEX
SQLAlchemy 是一个 SQL 工具包和对象关系映射(ORM)库,用于 Python 编程语言。它提供了一个高级的 SQL 工具和对象关系映射工具,允许开发者以 Python 类和对象的形式操作数据库,而无需编写大量的 SQL 语句。SQLAlchemy 建立在 DBAPI 之上,支持多种数据库后端,如 SQLite, MySQL, PostgreSQL 等。 SQLAlchemy 的核心功能: 对象关系映射(ORM): SQLAlchemy 允许开发者使用 Python 类来表示数据库表,使用类的实例表示表中的行。 开发者可以定义类之间的关系(如一对多、多对多),SQLAlchemy 会自动处理这些关系在数据库中的映射。 通过 ORM,开发者可以像操作 Python 对象一样操作数据库,这大大简化了数据库操作的复杂性。 表达式语言: SQLAlchemy 提供了一个丰富的 SQL 表达式语言,允许开发者以 Python 表达式的方式编写复杂的 SQL 查询。 表达式语言提供了对 SQL 语句的灵活控制,同时保持了代码的可读性和可维护性。 数据库引擎和连接池: SQLAlchemy 支持多种数据库后端,并且为每种后端提供了对应的数据库引擎。 它还提供了连接池管理功能,以优化数据库连接的创建、使用和释放。 会话管理: SQLAlchemy 使用会话(Session)来管理对象的持久化状态。 会话提供了一个工作单元(unit of work)和身份映射(identity map)的概念,使得对象的状态管理和查询更加高效。 事件系统: SQLAlchemy 提供了一个事件系统,允许开发者在 ORM 的各个生命周期阶段插入自定义的钩子函数。 这使得开发者可以在对象加载、修改、删除等操作时执行额外的逻辑。
SQLAlchemy 是一个 SQL 工具包和对象关系映射(ORM)库,用于 Python 编程语言。它提供了一个高级的 SQL 工具和对象关系映射工具,允许开发者以 Python 类和对象的形式操作数据库,而无需编写大量的 SQL 语句。SQLAlchemy 建立在 DBAPI 之上,支持多种数据库后端,如 SQLite, MySQL, PostgreSQL 等。 SQLAlchemy 的核心功能: 对象关系映射(ORM): SQLAlchemy 允许开发者使用 Python 类来表示数据库表,使用类的实例表示表中的行。 开发者可以定义类之间的关系(如一对多、多对多),SQLAlchemy 会自动处理这些关系在数据库中的映射。 通过 ORM,开发者可以像操作 Python 对象一样操作数据库,这大大简化了数据库操作的复杂性。 表达式语言: SQLAlchemy 提供了一个丰富的 SQL 表达式语言,允许开发者以 Python 表达式的方式编写复杂的 SQL 查询。 表达式语言提供了对 SQL 语句的灵活控制,同时保持了代码的可读性和可维护性。 数据库引擎和连接池: SQLAlchemy 支持多种数据库后端,并且为每种后端提供了对应的数据库引擎。 它还提供了连接池管理功能,以优化数据库连接的创建、使用和释放。 会话管理: SQLAlchemy 使用会话(Session)来管理对象的持久化状态。 会话提供了一个工作单元(unit of work)和身份映射(identity map)的概念,使得对象的状态管理和查询更加高效。 事件系统: SQLAlchemy 提供了一个事件系统,允许开发者在 ORM 的各个生命周期阶段插入自定义的钩子函数。 这使得开发者可以在对象加载、修改、删除等操作时执行额外的逻辑。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值