如何在magnet里面显示切向和径向磁密而不是它们的绝对值?
如何在magnet的后处理里面显示切向和径向磁密?不要它们的绝对值,以便于进行FFT等分析,是我没找对地方么?
这里是表面的切向和法相 如果理解的没错的话,楼主是2D模型吧。因为3D模型的切向定义不是单一的。MagNet目前还不能直接显示这两个量。但楼主可使用Add New Field 脚本工具,使用Bx和By计算径向和切向磁密。如下是计算径向的一个简单例子以供参考:
Set oBFieldx = Sol.getSystemField(oMesh, "B x") 'Get B x field
Set oBFieldy = Sol.getSystemField(oMesh, "B y") 'Get B y field
Set oBRadial = oBFieldx
Set oBRadial2= oBFieldy
Dim oFieldx, oFieldy, oATANField, oATANField2
Set oFieldx = Sol.getSystemField(oMesh, "X") 'Get the field of X coordinates
Set oFieldy = Sol.getSystemField(oMesh, "Y") 'Get the field of Y coordinates
Set oATANField = oFieldy.atan(oFieldx) 'Get the angle
' where F1.atan(F2) in MagNet is equivalent to atan2(F1,F2) which is equal to atan(F1/F2) when F2 > 0
Set oATANField2 = oATANField.clone()
Call oATANField.cos() 'Converts field to the Cosine of its original values ; In other words the original OATANField gets overwritten with the resultant field
Call oATANField2.sin() 'Converts field to the Sine of its original values
Call oBRadial.multiply(oATANField) 'Bx*cos(angle)
Call oBRadial2.multiply(oATANField2) 'By*sin(angle)
Call oBRadial.add(oBRadial2) 'Bx*cos(angle) + By*sin(angle)
jess 发表于 2016-9-8 10:01
这里是表面的切向和法相
多谢指正
看来对软件理解还是不够透彻啊
panda8866 发表于 2016-9-9 07:35
如果理解的没错的话,楼主是2D模型吧。因为3D模型的切向定义不是单一的。MagNet目前还不能直接显示这两个量 ...
多谢指教
回头我试一下 需要脚本,三楼回答的非常好 切向计算的公式是什么
页:
[1]