Best Of
Re: CMS reduction and export to op4 file
Hello David,
reduced loads are not exported in op4 format. I see 2 solutions since you are using GRAV loads:
1) apply them in the residual run and the loads will be applied to the mass of the SE also;
2) use another format for reduction as pch.
Regards.
Alberto
ソリッド CAD、ソリッド要素に、ぴったり同じ形になるビーム要素を作る方法
はじめに
いま、このようにソリッド CAD の中に、ビーム要素 (CBEAM という文字で表示) を作ってあります。この記事では、
次のように、ソリッド CAD に一致する断面を作って、ビーム要素に割り当てる、つまりビーム要素の見た目の形状をソリッド CAD に一致させる機能を動画で紹介します。
動画
動画ファイルのダウンロード:
KB0121673_ソリッドCADやソリッドメッシュの形に合わせたビーム要素断面の自動作成.mp4
動画に使用したモデルファイル: model01.hm
アルテアジャパン公式製品リンク
https://www.altairjp.co.jp/hyperworks/
お問い合わせ先
https://www.altairjp.co.jp/contact-us/
HyperMesh なら FiberSim の積層情報から積層シェルモデルを一発で作り上げることができます
始めに
HyperMesh には FiberSim で作成された積層情報を読み込んで、シェルメッシュにマッピングする機能があります。これを利用すると、面倒で仕方がない積層シェルモデル作成が一発で完了します。詳しくは動画で説明します。
動画による説明
動画ファイルのダウンロード:
KB0121747_FiberSimの積層情報から一発で積層シェルモデル化する方法.mp4
チュートリアル
この動画は、次のチュートリアルモデルを用いて行っています。チュートリアルは Ansys ソルバー向けとなっていますが、OptiStruct をはじめとする多くのソルバーで同じ作業ができます。
https://help.altair.com/hwdesktop/hm/topics/tutorials/hm/tut_hm_4460_t.htm
アルテアジャパン公式製品リンク
https://www.altairjp.co.jp/hyperworks/
お問い合わせ先
https://www.altairjp.co.jp/contact-us/
Re: Grid mesh Automation
Hi Mr. Bharath,
You can use pauseprocess script to do this operation.
Please refer to the script utilities in SimLab Help. With that script, you can pause the process at the time of grid mesh, and type the inputs for grid mesh and press ok, which will continue the script.
I have added a sample script which is also available in the script utilities.
Thanks
Aniruddh
ひずみの出力方法
ひずみテンソル
_0001.rad に
# シェル要素 /ANIM/SHELL/TENS/STRAIN/ALL # ソリッド要素 /ANIM/BRICK/TENS/STRAIN/ALL
塑性ひずみ
# シェル要素 /ANIM/SHELL/EPSP/ALL # ソリッド要素 /ANIM/BRICK/EPSP
エンジンジョブを GUI 以外で止める方法
実行フォルダに、実行中のエンジンファイル名と同じ名前で拡張子を .ctl としたファイルに、次の 1行を書き込んでおきます。
/KILL
.ctl は具体例を挙げると、model01_0001.rad を実行中であれば model01_0001.ctl とします。実は GUI もこの .ctl ファイルを作っているだけです。
Radioss が正常実行中であれば 10サイクル中にジョブが止まります。しかし、異常が起きていて計算が先のサイクルに進むことすらできなくなっているときは、この方法では止まりません。
Windows ならタスクマネジャー, Linux なら Kill コマンドなどで止めてください。
HyperView: How to remove pre-strain/stamping/residual strain from crash analysis
When dealing with crash analysis where stamping effect was taken into account, a frequent question is: how to plot only the stress variation coming from the crash analysis, without taking into account the stamping strain?
For RADIOSS native animations (Annn) and LS Dyna results, this can be done by changing the reader options before loading the results in HyperView:
RADIOSS reader options:
LS-Dyna reader options:
If dealing with:
- RADIOSS h3d (either obtain by background conversion of animations via HvTrans, or as native h3d format)
- RADIOSS or LS-Dyna femzip files
- or with PamCrash results,
you need to create a Derived result. You can create it either from a right click anywhere in the model browser:
or from the ribbon:
In the expression builder pop-up:
- set an explicit label for the expression
- look for the Table Strain, and click on Insert. This will populate a first code in the Expresion section:
- Just above the Table drop-down list, click on the icon left to Show all in order to expose hidden fields. Then keep Strain as Table and set Frame to Time = 0.000000. Insert an add the “–“ sign between both expression. Then Apply.
The expression is now available as a contour:
You can save and leverage your post-processing as a Flexible Report in order to re-use the expression on your other result files.
if 文を使って FEM 入力データを自由に書き換える方法
はじめに
HyperStudy はパラメータ化ファイルと言う機能で、テキストファイルの数値を自由に書き換える手法があります。専用のエディタで数値を選ぶだけでパラメータ化できるのですが、
実は Templex というプログラミング言語をテキストに埋め込んでいます。
そして Templex は数値を書き換えるだけではなく、プログラミング言語ですので if 文もあります。
https://2022.help.altair.com/2022/hwdesktop/hwd/topics/reference/templex/if.htm
これを使うと、ありとあらゆるテキストファイルを自由自在に書き換えることができます。FEM 入力ファイルをテキストファイルですので、自由自在にモデルを変更できるというわけです。
実践例: Templex 命令を埋め込む
本記事では、この RBE2 のオンオフのできる Templex 命令を考えていきたいと思います。
まずオンオフを決めるための設計変数を定義します。rbe2_1 と言う変数で、1 の時に一つの RBE2 が有効、1でないなら無効と使用と思います。
{parameter(rbe2_1, rbe2_1, 1, 0, 1)}
https://2022.help.altair.com/2022/hwdesktop/hwd/topics/reference/templex/parameter.htm
if 文を使って 1のときのみ RBE2 を書き出すようにします。{if} ~ {endif} までの間は、rbe2=1 以外のときには何も出力されません。つまりこの RBE2 は消えます。
{if(rbe2_1 == 1)} RBE2 1 2 123456 30 {endif}
https://2022.help.altair.com/2022/hwdesktop/hwd/topics/reference/templex/if.htm
これを必要な数だけ繰り返せば、自由自在にモデルの書き換えが可能です。
あ、この作業は好きなテキストエディタで行ってください。最初に張り付けた HyperStudy のテキストエディタでも構いません( if に関して特別な機能はありません )
HyperStudy での設定
このモデルはパラメータ化ファイルとして使うことができます。
この手の問題の場合は、設計変数を整数の離散値にするのが都合が良いと思います。
これで DOE なり最適化なり行えば OK です。
このテキストファイルのダウンロードはこちら: model01.tpl
アルテアジャパン公式製品リンク
https://www.altairjp.co.jp/hyperstudy/
Re: XML file for SKiiP 23AC12T7V1 IGBT device in PSIM for thermal analysis
Hello, i added all the datasheet information but when i try to run my simulation, i get this error:
"Error: The gate resistance in the Eon_Ic test conditions is 0"
i can't acces the tab "other test conditions" in the PcdEditor
I added my .xml in the attachment
Hi, Jeroen,
Please enter the correct Rg value in the device database: