1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Salome-Meca 2024 for Windowsのインストール

1
Posted at

Salome-Meca for Windows
https://code-aster-windows.com/
の2024バージョンが出ていたので、オープンCAE学会による2023バージョンへのインストール
https://www.opencae.or.jp/wp-content/uploads/2025/05/InstallationTest_SalomeMeca2023WinOpenCAE2025.pdf
と基本、同じ手順でインストールしてみました。

うまく行ったようです。
image.png

参考までに作成したコマンドファイルは以下の通りです。

DEBUT(LANG='EN')
mesh = LIRE_MAILLAGE(FORMAT='MED',
UNITE=20)
model = AFFE_MODELE(AFFE=_F(MODELISATION=('3D', ),
PHENOMENE='MECANIQUE',
TOUT='OUI'),
MAILLAGE=mesh)
mater = DEFI_MATERIAU(ELAS=_F(E=200000.0,
NU=0.3))
materfl = AFFE_MATERIAU(AFFE=_F(MATER=(mater, ),
TOUT='OUI'),
MODELE=model)
mecabc = AFFE_CHAR_MECA(DDL_IMPO=_F(DX=0.0,
DY=0.0,
DZ=0.0,
GROUP_MA=('Fix', )),
MODELE=model)
mecach = AFFE_CHAR_MECA(MODELE=model,
PRES_REP=_F(GROUP_MA=('Load', ),
PRES=1.0))
result = MECA_STATIQUE(CHAM_MATER=materfl,
EXCIT=(_F(CHARGE=mecabc),
_F(CHARGE=mecach)),
MODELE=model)
IMPR_RESU(FORMAT='MED',
RESU=_F(RESULTAT=result),
UNITE=80)
FIN()

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?