open_apdl_log# Mapdl.open_apdl_log(filename, mode='w')# Start writing all APDL commands to an MAPDL input file. パラメーター: filenamestrログのファイル名 。 modestr, optionalPython file modes (for example, 'a', 'w'). Should be either write or append. 戻り値の型: None Examples Begin writing APDL commands to "log.inp". >>> mapdl.open_apdl_log("log.inp")