Measure Catia StartUp
Measure Catia StartUp
(OP)
Hello every-body,
I want to get the startup time of Catia by a Catia Script or a VB scripts. I dont know if Catia store this information in a log. I thought in the begining of a script checking memory utilisation until a certain number where Catia is full loaded and can be used, but the probleme of this script is that the memory consuption is different from a machine to another. The information must be got from any machine that launch Catia.
Thank you for your answers.
I want to get the startup time of Catia by a Catia Script or a VB scripts. I dont know if Catia store this information in a log. I thought in the begining of a script checking memory utilisation until a certain number where Catia is full loaded and can be used, but the probleme of this script is that the memory consuption is different from a machine to another. The information must be got from any machine that launch Catia.
Thank you for your answers.





RE: Measure Catia StartUp
To use CATIA Script you need to have CATIA already running in a way or another (normal way or batch mode). So, you need an external application to measure what you want. In my opinion, opening CATIA is not an issue (few seconds more or less doesn't matter) but loading an assembly it is.
Regards
Fernando
https://picasaweb.google.com/102257836106335725208
https://picasaweb.google.com/103462806772634246699...
RE: Measure Catia StartUp
I have already a Catia Script that is launched while Catia starts, i gather different informations about the machine that launch Catia (OS, CPU, Memory) and about the enviornonment for Catia. But i need to get the Catia startup Time to compare between the machines with the different configuration. I make a script that calculate the time between the Catia launch and the first input (a popUp is shown), but the problem with this solution is that Catia user's are complaining about this PopUp.
Regards.
RE: Measure Catia StartUp
CODE --> VBS
On Error Resume Next StartTime = Timer Set objCATIA = GetObject(, "CATIA.Application") If Err.Number <> 0 Then Set objCATIA = CreateObject("CATIA.Application") Err.Clear End If On Error Goto 0 objCATIA.Visible = true Elapsed = Timer - StartTime WScript.Echo ElapsedRegards
Fernando
https://picasaweb.google.com/102257836106335725208
https://picasaweb.google.com/103462806772634246699...
RE: Measure Catia StartUp