- 积分
- 33995
- 回帖
- 0
- 西莫币
-
- 贡献
-
- 威望
-
- 存款
-
- 阅读权限
- 100
- 最后登录
- 1970-1-1
签到天数: 111 天 连续签到: 20 天 [LV.6]常住居民II
|
发表于 2015-9-4 15:56
|
显示全部楼层
来自: 中国上海
本帖最后由 zengxiaodong 于 2015-9-4 16:03 编辑
我们来看看,电磁场线性摄动分析是如何计算线圈组微分电感的,可以参见前2楼附件手册中的例子如下:
! *** Linear perturbation static analysis
! to determine the self- and mutual inductances of the coils
/solu
antyp,static,restart,,,perturb
perturb,stat,,current,allkeep
solve,elform
! *** Apply test current to the primary coil to determine its self-inductance
ddele,nd_p,volt
curr=1.e-3
f,nd_p,amps,curr
solve
! *** Apply test current to the secondary coil to determine its self-inductance
fdele,nd_p,amps
f,nd_s,amps,curr
solve
! *** Apply test current to both coils to determine their mutual inductance
f,nd_p,amps,curr
solve
fini
/post1
file,,rstp
set,1,last
etable,_iene,iene
ssum
*get,iene_p,ssum,,item,_iene
Lp=2*iene_p/curr**2*symm
set,2,last
etable,_iene,iene
ssum
*get,iene_s,ssum,,item,_iene
Ls=2*iene_s/curr**2*symm
set,3,last
etable,_iene,iene
ssum
*get,iene_m,ssum,,item,_iene
Lm=(iene_m-iene_p-iene_s)/curr**2*symm
其实,还是能量摄动法!!!!!!!!!!!!!!! |
|