//Erzeugen der Extrusionfür RechteckVoll internal void ErzeugeExtrusionVoll(RechteckVoll rechteckVoll) { hspB1_catiaPart.Part.InWorkObject = hspB1_catiaPart.Part.MainBody; // Extrusion erzeugen ShapeFactory catShapeFactory1 = (ShapeFactory)hspB1_catiaPart.Part.ShapeFactory; Pad catPad1 = catShapeFactory1.AddNewPad(hspB1_catia_Profil, rechteckVoll.Länge); // Block umbenennen catPad1.set_Name("Profil Rechteck voll"); // Part aktualisieren hspB1_catiaPart.Part.Update(); }
//Hier beginnen RechteckProfile //RechteckVoll! //Erzeugen der Geometrie RechteckVoll internal void ErzeugeProfilRechteckVoll(RechteckVoll rechteckVoll) { hspB1_catia_Profil.set_Name("Rechteck_Voll"); Factory2D factory2D = hspB1_catia_Profil.OpenEdition(); //Setzen der Punkte Point2D catPoint2D1 = factory2D.CreatePoint(-rechteckVoll.Breite / 2, rechteckVoll.Höhe / 2); Point2D catPoint2D2 = factory2D.CreatePoint(rechteckVoll.Breite / 2, rechteckVoll.Höhe / 2); Point2D catPoint2D3 = factory2D.CreatePoint(rechteckVoll.Breite / 2, -rechteckVoll.Höhe / 2); Point2D catPoint2D4 = factory2D.CreatePoint(-rechteckVoll.Breite / 2, -rechteckVoll.Höhe / 2); //Linie Horrizontal Oben Line2D catLine2D1 = factory2D.CreateLine(-rechteckVoll.Breite / 2, rechteckVoll.Höhe / 2, rechteckVoll.Breite / 2, rechteckVoll.Höhe / 2); catLine2D1.StartPoint = catPoint2D1; catLine2D1.EndPoint = catPoint2D2; //Linie Vertikal Rechts Line2D catLine2D2 = factory2D.CreateLine(rechteckVoll.Breite / 2, rechteckVoll.Höhe / 2, rechteckVoll.Breite / 2, -rechteckVoll.Höhe / 2); catLine2D2.StartPoint = catPoint2D2; catLine2D2.EndPoint = catPoint2D3; //Linie Horizontal Unten Line2D catLine2D3 = factory2D.CreateLine(rechteckVoll.Breite / 2, -rechteckVoll.Höhe / 2, -rechteckVoll.Breite / 2, -rechteckVoll.Höhe / 2); catLine2D3.StartPoint = catPoint2D3; catLine2D3.EndPoint = catPoint2D4; //Linie Vertikal Links Line2D catLine2D4 = factory2D.CreateLine(-rechteckVoll.Breite / 2, rechteckVoll.Höhe / 2, -rechteckVoll.Breite / 2, -rechteckVoll.Höhe / 2); catLine2D4.StartPoint = catPoint2D4; catLine2D4.EndPoint = catPoint2D1; // Skizzierer verlassen hspB1_catia_Profil.CloseEdition(); // Part aktualisieren hspB1_catiaPart.Part.Update(); }
//Rechteckige PRofile public void ExcelReVo(RechteckVoll rechteckVoll) { mySheet.Cells[z, "A"] = i; mySheet.Cells[z, "B"] = "Rechteck Voll"; mySheet.Cells[z, "C"] = rechteckVoll.Höhe; mySheet.Cells[z, "D"] = rechteckVoll.Breite; mySheet.Cells[z, "E"] = ""; mySheet.Cells[z, "F"] = ""; mySheet.Cells[z, "G"] = ""; mySheet.Cells[z, "H"] = rechteckVoll.Länge; mySheet.Cells[z, "I"] = rechteckVoll.QFläche(); mySheet.Cells[z, "J"] = rechteckVoll.Volumen(); mySheet.Cells[z, "K"] = rechteckVoll.WiederstandsMoment_Wy() / 1000; mySheet.Cells[z, "L"] = rechteckVoll.WiederstandsMoment_Wz() / 1000; mySheet.Cells[z, "M"] = rechteckVoll.FTM_Iy() / 10000; mySheet.Cells[z, "N"] = rechteckVoll.FTM_Iz() / 10000; mySheet.Cells[z, "O"] = rechteckVoll.FTM_Polar() / 10000; i++; z++; }