Informationen zum Forum CATIA V5 Programmierung:
Anzahl aktive Mitglieder: 2.316
Anzahl Beiträge: 31.742
Anzahl Themen: 6.266

Im Beitrag/Titel Nur im Titel Nur nach Datum sortieren Docs / Anhänge mit Lösung
Suchmaschinenstatistik
Livesuche
Einstellungen
Info

Auch mit chatGPT* können Lösungen aus dem CAD.de-Forum recherchiert werden:

* chatGPT ist eine eingetragene Marke von openAI

Ergebnisse 10011 - 10023, 10970 Gesamtergebnisse mit Suchbegriffen catia sec.

Direkter Link in ein Forum:

CATIA V4 Allgemein CATIA V4 Administration CATIA V4 SOLID CATIA V4 Flächen CATIA V4 CAM
CATIA V4 Kinematik CATIA V4 MAKROS CATIA V4 2D und Drawings CATIA V4 Datentransfer CATIA V5 Allgemein
CATIA V5 Drafting CATIA V5 CAM CATIA V5 Kinematik DMU CATIA V5 Programmierung CATIA V5 Flächen
CATIA V5 Part / Assembly CATIA V5 Infrastruktur CATIA V5 Datentransfer CATIA V4 / Umstieg CATIA V4 - V5 CATIA V4 Prüftools
CATIA V5 FEM CATIA V5 ICEM Shape Design CATIA V6 CATIA V5 Composite

CATIA V5 Programmierung : LS-OPT and CATIA
Sam2021 am 26.03.2018 um 12:46 Uhr (1)
Dear Bernd, Honestly i havent. Since i am using this option for the first time, there are some difficulties for me in achieving that. I thought i would generate a script where the parameters can be changed using string variable. Do you think manually changing and recording is more efficient? Or can i just redit the script you had provided in your fist reply? Thank you

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : LS-OPT and CATIA
Sam2021 am 26.03.2018 um 12:49 Uhr (1)
If you see the model, under feature tree == arameters, i would want the LS OPT tool to vary the last four parameters. SO, the combination could be more than i could do manually. Hence i thought i would use the script where it does the job automatically. Best regards, Sam

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : LS-OPT and CATIA
Sam2021 am 26.03.2018 um 13:08 Uhr (1)
1. I will record a macro and see how it works. 2. I would give the range in the LS OPt. Everytime it asks, lets say change the angle to some value, it would change in the script and generate the new geom. file (If i understood your question correctly)3. You mean the paramaters in the future tree? if yes, please see the attached file. Thank you Best regards, Sam [Diese Nachricht wurde von Sam2021 am 26. Mrz. 2018 editiert.]

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : LS-OPT and CATIA
bgrittmann am 26.03.2018 um 13:25 Uhr (1)
HiA code example for two of these parameters:Code:Sub CATMain()Dim partDocument1 As DocumentSet partDocument1 = CATIA.ActiveDocumentDim part1 As PartSet part1 = partDocument1.PartDim parameters1 As ParametersSet parameters1 = part1.ParametersDim TotalLenghtPara As ParameterSet TotalLenghtPara = parameters1.RootParameterSet.DirectParameters.Item("Total_Lenght")TotalLenghtPara.Value = 300Dim AnglePara As ParameterSet AnglePara = parameters1.RootParameterSet.DirectParameters.Item("Angle")AnglePara.Value = -10 ...

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : LS-OPT and CATIA
Sam2021 am 26.03.2018 um 13:28 Uhr (1)
I tried and created a .catvbs file for the problem. Could you please take alook when you have time and let me know if its correct?Thank you

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : LS-OPT and CATIA
Sam2021 am 26.03.2018 um 13:49 Uhr (1)
Hello, 1. Please ignore the previous email. it was sent before noticing your latest reply. 2. Now I have used your example script and built one for my problem. I kindly request you to take a look when you have time. thank you

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : LS-OPT and CATIA
bgrittmann am 26.03.2018 um 13:55 Uhr (1)
HiPlease try to understand the code and not only copy code snippets in one file.My code was written as .CATScript. (maybe you should also use CASTScript)Also have a look on the documentation (V5Automation.chm in the Catia install folder).Regards,Bernd------------------Warum einfach, wenn es auch kompliziert geht.

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : LS-OPT and CATIA
Sam2021 am 26.03.2018 um 14:36 Uhr (1)
okay. i will take a look into the manual and build the script further and get back to you. Thank you.Best regards,Sam

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : LS-OPT and CATIA
Sam2021 am 26.03.2018 um 18:54 Uhr (1)
Dear Bernd, I read the manual and have created a script. I couldnt fix the syntax error which occurs while i try to run. COuld you please take a look into the script file when you have time and help me trouble shoot the issue? thank you

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : LS-OPT and CATIA
Sam2021 am 27.03.2018 um 08:15 Uhr (1)
Dear Bernd, Thank you very much. the code runs perfectly fine. In order to run .CATscript in batch, can i still use CNEXT.exe command? Thank you Bet regards, Sam

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : LS-OPT and CATIA
bgrittmann am 27.03.2018 um 16:44 Uhr (1)
Hi SamOpening Catia per command and execute a macro: see for example hereRegards,Bernd------------------Warum einfach, wenn es auch kompliziert geht.

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : LS-OPT and CATIA
Sam2021 am 27.03.2018 um 18:51 Uhr (1)
Dear Bernd, Thank you very much for the response. I will take a look. Best regards,Sam

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : LS-OPT and CATIA
Sam2021 am 28.03.2018 um 08:15 Uhr (1)
Dear Bernd, is it still possible to convert the .CATscript to .vbscript? Thank you.

In das Form CATIA V5 Programmierung wechseln

Anzeige:

Anzeige: (Infos zum Werbeplatz)

Ergebnisseiten :  1 ...  758   759   760   761   762   763   764   765   766   767   768   769   770   771   772   773   774   775   776   777   778   779   780   781   782   783   ... mehr

Alle Produkt-, Schrift-, Firmennamen und Logos sind Warenzeichen oder eingetr. Warenzeichen der jeweiligen Firmen.
©2025 CAD.de , Lenggries. Tel: ++49 (8042) 973 8208 | Datenschutz