open_apdl_log# Mapdl.open_apdl_log(filename, mode='w')# Start writing all APDL commands to an MAPDL input file. Parameters: filenamestrFilename of the log. modestr, optionalPython file modes (for example, 'a', 'w'). Should be either write or append. Return type: None Examples Begin writing APDL commands to "log.inp". >>> mapdl.open_apdl_log("log.inp")