23 lines
842 B
Python
23 lines
842 B
Python
|
|
# NX 2412
|
|||
|
|
# Journal created by antoi on Sat Nov 15 12:12:09 2025 Eastern Standard Time
|
|||
|
|
#
|
|||
|
|
import math
|
|||
|
|
import NXOpen
|
|||
|
|
import NXOpen.CAE
|
|||
|
|
def main(args) :
|
|||
|
|
|
|||
|
|
theSession = NXOpen.Session.GetSession() #type: NXOpen.Session
|
|||
|
|
workSimPart = theSession.Parts.BaseWork
|
|||
|
|
displaySimPart = theSession.Parts.BaseDisplay
|
|||
|
|
# ----------------------------------------------
|
|||
|
|
# Menu: File->Close->Close and Reopen All Modified Parts
|
|||
|
|
# ----------------------------------------------
|
|||
|
|
partReopenReport1 = theSession.Parts.ReopenAll(NXOpen.BasePart.CloseModified.CloseModified, None)
|
|||
|
|
|
|||
|
|
partReopenReport1.Dispose()
|
|||
|
|
# ----------------------------------------------
|
|||
|
|
# Menu: Tools->Automation->Journal->Stop Recording
|
|||
|
|
# ----------------------------------------------
|
|||
|
|
|
|||
|
|
if __name__ == '__main__':
|
|||
|
|
main(sys.argv[1:])
|