【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

相关文章

SpringBoot中@Value注入静态变量方式

《SpringBoot中@Value注入静态变量方式》SpringBoot中静态变量无法直接用@Value注入,需通过setter方法,@Value(${})从属性文件获取值,@Value(#{})用... 目录项目场景解决方案注解说明1、@Value("${}")使用示例2、@Value("#{}"php

Python ORM神器之SQLAlchemy基本使用完全指南

《PythonORM神器之SQLAlchemy基本使用完全指南》SQLAlchemy是Python主流ORM框架,通过对象化方式简化数据库操作,支持多数据库,提供引擎、会话、模型等核心组件,实现事务... 目录一、什么是SQLAlchemy?二、安装SQLAlchemy三、核心概念1. Engine(引擎)

Python异步编程之await与asyncio基本用法详解

《Python异步编程之await与asyncio基本用法详解》在Python中,await和asyncio是异步编程的核心工具,用于高效处理I/O密集型任务(如网络请求、文件读写、数据库操作等),接... 目录一、核心概念二、使用场景三、基本用法1. 定义协程2. 运行协程3. 并发执行多个任务四、关键

Unity新手入门学习殿堂级知识详细讲解(图文)

《Unity新手入门学习殿堂级知识详细讲解(图文)》Unity是一款跨平台游戏引擎,支持2D/3D及VR/AR开发,核心功能模块包括图形、音频、物理等,通过可视化编辑器与脚本扩展实现开发,项目结构含A... 目录入门概述什么是 UnityUnity引擎基础认知编辑器核心操作Unity 编辑器项目模式分类工程

Go语言连接MySQL数据库执行基本的增删改查

《Go语言连接MySQL数据库执行基本的增删改查》在后端开发中,MySQL是最常用的关系型数据库之一,本文主要为大家详细介绍了如何使用Go连接MySQL数据库并执行基本的增删改查吧... 目录Go语言连接mysql数据库准备工作安装 MySQL 驱动代码实现运行结果注意事项Go语言执行基本的增删改查准备工作

Python学习笔记之getattr和hasattr用法示例详解

《Python学习笔记之getattr和hasattr用法示例详解》在Python中,hasattr()、getattr()和setattr()是一组内置函数,用于对对象的属性进行操作和查询,这篇文章... 目录1.getattr用法详解1.1 基本作用1.2 示例1.3 原理2.hasattr用法详解2.

Android 缓存日志Logcat导出与分析最佳实践

《Android缓存日志Logcat导出与分析最佳实践》本文全面介绍AndroidLogcat缓存日志的导出与分析方法,涵盖按进程、缓冲区类型及日志级别过滤,自动化工具使用,常见问题解决方案和最佳实... 目录android 缓存日志(Logcat)导出与分析全攻略为什么要导出缓存日志?按需过滤导出1. 按

通过配置nginx访问服务器静态资源的过程

《通过配置nginx访问服务器静态资源的过程》文章介绍了图片存储路径设置、Nginx服务器配置及通过http://192.168.206.170:8007/a.png访问图片的方法,涵盖图片管理与服务... 目录1.图片存储路径2.nginx配置3.访问图片方式总结1.图片存储路径2.nginx配置

DNS查询的利器! linux的dig命令基本用法详解

《DNS查询的利器!linux的dig命令基本用法详解》dig命令可以查询各种类型DNS记录信息,下面我们将通过实际示例和dig命令常用参数来详细说明如何使用dig实用程序... dig(Domain Information Groper)是一款功能强大的 linux 命令行实用程序,通过查询名称服务器并输

Linux中的HTTPS协议原理分析

《Linux中的HTTPS协议原理分析》文章解释了HTTPS的必要性:HTTP明文传输易被篡改和劫持,HTTPS通过非对称加密协商对称密钥、CA证书认证和混合加密机制,有效防范中间人攻击,保障通信安全... 目录一、什么是加密和解密?二、为什么需要加密?三、常见的加密方式3.1 对称加密3.2非对称加密四、