【Ansys Maxwell 学习笔记】CASE01_Basic Magnetostatic Analysis--基本静态磁场分析

本文主要是介绍【Ansys Maxwell 学习笔记】CASE01_Basic Magnetostatic Analysis--基本静态磁场分析,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

【目的】

如何在2D静态磁场解释器中计算力。

Discuss how to set up a force calculation in the 2D Magnetostatic Solver.

   

   

   

As shown in the following picture, a coil and slug are drawn in a plane using RZ symmetry. The coils carry a current that exert a vertical force on the ferromagnetic slug.

如下图所示,使用RZ对称性在平面上绘制了线圈和凸块。 线圈载有电流,该电流在铁磁块上施加垂直力。

   

   

【建模过程】

Step01:Create Design 新建设计工程文件

– Select the menu item Project -> Insert Maxwell 2D Design,然后对其进行重命名和保存

Step02:Set Solution Type 设置解释器类型(磁场分析)

– Select the menu item Maxwell 2D ->Solution Type

   

– Solution Type Window:

1. Geometry Mode: Cylindrical about Z

2. Choose Magnetic > Magnetostatic

3. Click the OK button

如下图:

Geometry Mode:几何模式

Cylindrical about Z,关于Z轴的圆柱体

创建基于Z轴的圆柱体,并对其磁场进行分析

Step03: Create Slug (创建模型中的凸块)

该模型的大小为XZ平面上5*15大小的一个矩形,其对角线坐标分别是(0,0,-10)和(5,0,5),颜色设置为灰色,材料为steel_1008(冷镦钢)

– Select the menu item Draw ->Rectangle

1. Using the coordinate entry fields, enter the position of rectangle – X: 0, Y: 0, Z: -10, Press the Enter key

2. Using the coordinate entry fields, enter the opposite corner – dX: 5, dY: 0, dZ: 15, Press the Enter key

– Change the name of resulting sheet to Slug and color to Gray

– Change the material of the sheet to Steel_1008

绘制完的结果如下图所示

   

Step04: Create Coil (创建模型中的线圈)

该模型的大小为XZ平面上4*20大小的一个矩形,其对角线坐标分别是(6,0,0)和(10,0,20),颜色设置为棕色,材料为Copper(铜)

– Select the menu item Draw-> Rectangle

1. Using the coordinate entry fields, enter the position of rectangle – X: 6, Y: 0, Z: 0, Press the Enter key

2. Using the coordinate entry fields, enter the opposite corner – dX: 4, dY: 0, dZ: 20, Press the Enter key

– Change the name of resulting sheet to Coil and color to Brown

– Change the material of the sheet to Copper

绘制完的结果如下图所示

Step05: Define Region(定义区域)

   

• Create Simulation Region

– Select the menu item Draw ->Region

– In Region window,

1. Pad all directions similarly: þ Checked

2. Padding Type: Percentage Offset

3. Value: 100

4. Press OK

• You should see a message indicating that the –X direction is set to zero due to RZ-symmetry about the Z-axis.

绘制完的结果如下:

Step06:Assign Excitations 添加激励

• Assign Excitations 为线圈添加1000A负向电流激励

– Select the sheet Coil from history tree 首先需要选中Coil这个模型

– Select the menu item Maxwell 2D ->Excitations -> Assign -> Current

• Name: Current1

• Value: 1000

• Ref. Direction: Negative (current will be in the negative Y direction) 即电流会沿着y轴向负向流动

设置结果如下

Step07:Assign Boundary and Parameter 添加边界和参数

•Assign Boundary to Region Edges

– Select the object Region from history tree

– Select the menu item Edit -> Select ->All Object Edges

– Select the menu item Maxwell 2D -> Boundaries ->Assign -> Balloon

– In Balloon Boundary window,

• Press OK

   

Note: On symmetry axis, "Balloon Boundary" assignment is automatically skipped, This can also be achieved by selecting the edges of region which are not on symmetry axis.

注意:在对称轴上,将自动跳过"气球边界"分配,这也可以通过选择不在对称轴上的区域的边缘来实现。

   

Step08: Assign Force Calculation 添加磁力计算

– Select the object Coil from history tree

– Select the menu item Maxwell 2D -> Parameters -> Assign ->Force

– In Force Setup window,

• Press OK

Step09: Analyze 分析

• Create an analysis setup: 设置 Anslysis setup

– Select the menu item Maxwell 2D -> Analysis Setup -> Add Solution Setup

– Solution Setup Window:

1. General Tab

– Maximum Number of Passes: 15

2. Click the OK button

• Start the solution process: 开始进行仿真

– Select the menu item Maxwell 2D -> Analyze All

Step10:Solution Data 查看仿真结果数据

• View Solution Information

– Select the menu item Maxwell 2D -> Results -> Solution Data

• To View Convergence

– Select the Convergence tab

• To View Calculated Force Value

– Select the Force tab

Step11:Create Field Plot 绘制磁力场

• Plot Magnetic Flux Density

– Expand the history tree for Planes

– Select the plane Global:XZ

– Select the menu item Maxwell 2D -> Fields -> Fields -> B -> Mag_B

– In Create Field Plot window,

• Press Done

   

   

这篇关于【Ansys Maxwell 学习笔记】CASE01_Basic Magnetostatic Analysis--基本静态磁场分析的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/768790

相关文章

Android kotlin中 Channel 和 Flow 的区别和选择使用场景分析

《Androidkotlin中Channel和Flow的区别和选择使用场景分析》Kotlin协程中,Flow是冷数据流,按需触发,适合响应式数据处理;Channel是热数据流,持续发送,支持... 目录一、基本概念界定FlowChannel二、核心特性对比数据生产触发条件生产与消费的关系背压处理机制生命周期

Java中的数组与集合基本用法详解

《Java中的数组与集合基本用法详解》本文介绍了Java数组和集合框架的基础知识,数组部分涵盖了一维、二维及多维数组的声明、初始化、访问与遍历方法,以及Arrays类的常用操作,对Java数组与集合相... 目录一、Java数组基础1.1 数组结构概述1.2 一维数组1.2.1 声明与初始化1.2.2 访问

怎样通过分析GC日志来定位Java进程的内存问题

《怎样通过分析GC日志来定位Java进程的内存问题》:本文主要介绍怎样通过分析GC日志来定位Java进程的内存问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、GC 日志基础配置1. 启用详细 GC 日志2. 不同收集器的日志格式二、关键指标与分析维度1.

Go语言数据库编程GORM 的基本使用详解

《Go语言数据库编程GORM的基本使用详解》GORM是Go语言流行的ORM框架,封装database/sql,支持自动迁移、关联、事务等,提供CRUD、条件查询、钩子函数、日志等功能,简化数据库操作... 目录一、安装与初始化1. 安装 GORM 及数据库驱动2. 建立数据库连接二、定义模型结构体三、自动迁

ModelMapper基本使用和常见场景示例详解

《ModelMapper基本使用和常见场景示例详解》ModelMapper是Java对象映射库,支持自动映射、自定义规则、集合转换及高级配置(如匹配策略、转换器),可集成SpringBoot,减少样板... 目录1. 添加依赖2. 基本用法示例:简单对象映射3. 自定义映射规则4. 集合映射5. 高级配置匹

MySQL中的表连接原理分析

《MySQL中的表连接原理分析》:本文主要介绍MySQL中的表连接原理分析,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1、背景2、环境3、表连接原理【1】驱动表和被驱动表【2】内连接【3】外连接【4编程】嵌套循环连接【5】join buffer4、总结1、背景

python中Hash使用场景分析

《python中Hash使用场景分析》Python的hash()函数用于获取对象哈希值,常用于字典和集合,不可变类型可哈希,可变类型不可,常见算法包括除法、乘法、平方取中和随机数哈希,各有优缺点,需根... 目录python中的 Hash除法哈希算法乘法哈希算法平方取中法随机数哈希算法小结在Python中,

Java Stream的distinct去重原理分析

《JavaStream的distinct去重原理分析》Javastream中的distinct方法用于去除流中的重复元素,它返回一个包含过滤后唯一元素的新流,该方法会根据元素的hashcode和eq... 目录一、distinct 的基础用法与核心特性二、distinct 的底层实现原理1. 顺序流中的去重

关于MyISAM和InnoDB对比分析

《关于MyISAM和InnoDB对比分析》:本文主要介绍关于MyISAM和InnoDB对比分析,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录开篇:从交通规则看存储引擎选择理解存储引擎的基本概念技术原理对比1. 事务支持:ACID的守护者2. 锁机制:并发控制的艺

SQL BETWEEN 语句的基本用法详解

《SQLBETWEEN语句的基本用法详解》SQLBETWEEN语句是一个用于在SQL查询中指定查询条件的重要工具,它允许用户指定一个范围,用于筛选符合特定条件的记录,本文将详细介绍BETWEEN语... 目录概述BETWEEN 语句的基本用法BETWEEN 语句的示例示例 1:查询年龄在 20 到 30 岁