If you want to waste time on a poorly documented API (which doesn't make any sense) I would highly recommend getting on Tekla. I'm documenting this so some poor soul doesn't waste a day trying to debug this: // what’s wrong with this? Beam b = new Beam(); b.SetUserProperty("USER_FIELD_1", "your data"); b.Insert(); Do you see the problem? First insert the beam, and then apply the UDA and it should work: // it only works AFTER you insert Beam b = new Beam(); b.Insert(); b.SetUserProperty("USER_FIELD_1", “your data”); What glorious waste of time trying to work out why it failed! But the problem is not with you - the problem is with the API. It fails silently, and the documentation is poor. https://www.tek1.com.au/tekla-api/why-arent-the-user-defined-attributes-being-defined-in-teklas-open-api/
Posts
Showing posts from February, 2025
- Get link
- X
- Other Apps
Our use case? - Detailers copy / paste profiles from structural drawings into a CSV file. - This CSV file is then used to create a model. - It is essential that the profiles are recognisable by Tekla. How can we check? - Through a data validation directly in Excel. Or - By validating the data directly in your code. using Tekla.Structures.Catalogs; // download this dll from Nuget public bool CSVProfilesAreCorrect(List dataRows) { HashSet csvProfiles = dataRows.Select(row => row.Profile).ToHashSet(); HashSet teklaProfiles = getAllTeklaProfiles().ToHashSet(); if (_areCSVProfilesCorrect()) { return true; } else { throw new SystemException($"The CSV files have these profiles which don't exist in Tekla: {String.Join(", ", string.Join(", ", csvProfiles.Except(teklaProfiles)))}"); } bool _areCSVP...
- Get link
- X
- Other Apps
Our use case? - Detailers copy / paste profiles from structural drawings into a CSV file. - This CSV file is then used to create a model. - It is essential that the profiles are recognisable by Tekla. How can we check? - Through a data validation directly in Excel. Or - By validating the data directly in your code. using Tekla.Structures.Catalogs; // download this dll from Nuget public bool CSVProfilesAreCorrect(List dataRows) { HashSet csvProfiles = dataRows.Select(row => row.Profile).ToHashSet(); HashSet teklaProfiles = getAllTeklaProfiles().ToHashSet(); if (_areCSVProfilesCorrect()) { return true; } else { throw new SystemException($"The CSV files have these profiles which don't exist in Tekla: {String.Join(", ", string.Join(", ", csvProfiles.Except(teklaProfiles)))}"); } bool _areCSVP...
- Get link
- X
- Other Apps
Our use case? - Detailers copy / paste profiles from structural drawings into a CSV file. - This CSV file is then used to create a model. - It is essential that the profiles are recognisable by Tekla. How can we check? - Through a data validation directly in Excel. Or - By validating the data directly in your code. using Tekla.Structures.Catalogs; // download this dll from Nuget public bool CSVProfilesAreCorrect(List dataRows) { if (_areCSVProfilesCorrect()) { return true; } else { throw new SystemException($"The CSV files have these profiles which don't exist in Tekla: {String.Join(", ", string.Join(", ", csvProfiles.Except(teklaProfiles)))}"); } bool _areCSVProfilesCorrect() { HashSet csvProfiles = dataRows.Select(row => row.Profile).ToHashSet(); HashSet tekla...
- Get link
- X
- Other Apps
Full check list is available here. Please supply checklist with every take off report you complete. - Please provide two MTO reports: (a) The first: is Koshy's Material List.xls.rpt (Please use the file here saved here. (click on link)) - see instructions on where to save it below. (b) The second: Excel - Material List - which shows all sub-totals. (c) IFC file. (d) db1 file (e) and if applicable, your .dwg line work file. - Where to save the .xls.rpt files? Ssave it to the appropriate file in your Tekla Program directory. In my computer it is here: C:UsersAll UsersTrimbleTekla Structures2023.0EnvironmentsAustralasiaGeneralcommon_reports You'll have to go into the file and add/edit fields if applicable. - I need the total tonnage: in email to me, and total in the spreadsheets We bill on tonnage. When you send your report: please put this in the body of your email. Please also add the same tonnage in your google spreadsheet. Please make sure that you do not double count "s...
- Get link
- X
- Other Apps
Full check list is available here. Please supply checklist with every take off report you complete. - Please provide two MTO reports: (a) The first: is Koshy's Material List.xls.rpt (Please use the file here saved here. (click on link)) - see instructions on where to save it below. (b) The second: Excel - Material List - which shows all sub-totals. (c) IFC file. (d) db1 file (e) and if applicable, your .dwg line work file. - Where to save the .xls.rpt files? Ssave it to the appropriate file in your Tekla Program directory. In my computer it is here: C:UsersAll UsersTrimbleTekla Structures2023.0EnvironmentsAustralasiaGeneralcommon_reports You'll have to go into the file and add/edit fields if applicable. - I need the total tonnage: in email to me, and total in the spreadsheets We bill on tonnage. When you send your report: please put this in the body of your email. Please also add the same tonnage in your google spreadsheet. Please make sure that you do not double count "s...
- Get link
- X
- Other Apps
Full check list is available here. Please supply checklist with every take off report you complete. - Please provide two MTO reports: (a) The first: is Koshy's Material List.xls.rpt (Please use the file here saved here. (click on link)) - see instructions on where to save it below. (b) The second: Excel - Material List - which shows all sub-totals. (c) IFC file. (d) db1 file (e) and if applicable, your .dwg line work file. - Where to save the .xls.rpt files? Ssave it to the appropriate file in your Tekla Program directory. In my computer it is here: C:UsersAll UsersTrimbleTekla Structures2023.0EnvironmentsAustralasiaGeneralcommon_reports You'll have to go into the file and add/edit fields if applicable. - I need the total tonnage: in email to me, and total in the spreadsheets We bill on tonnage. When you send your report: please put this in the body of your email. Please also add the same tonnage in your google spreadsheet. Please make sure that you do not double count "s...
- Get link
- X
- Other Apps
Full check list is available here. Please supply checklist with every take off report you complete. - Please provide two MTO reports: (a) The first: is Koshy's Material List.xls.rpt (Please use the file here saved here. (click on link)) - see instructions on where to save it below. (b) The second: Excel - Material List - which shows all sub-totals. (c) IFC file. (d) db1 file (e) and if applicable, your .dwg line work file. - Where to save the .xls.rpt files? Ssave it to the appropriate file in your Tekla Program directory. In my computer it is here: C:UsersAll UsersTrimbleTekla Structures2023.0EnvironmentsAustralasiaGeneralcommon_reports You'll have to go into the file and add/edit fields if applicable. - I need the total tonnage: in email to me, and total in the spreadsheets We bill on tonnage. When you send your report: please put this in the body of your email. Please also add the same tonnage in your google spreadsheet. Please make sure that you do not double count "s...
- Get link
- X
- Other Apps
Estimate precast concrete panels for your quotes Tek1 provides material take off for precast panels. Deliverables for Precast MTO - Marked up elevation and Plans - Panel break ups considering - minimization of mould sizes. - Transportation constraints - Lifting constraints at factory and site. - Buildability - Concrete volume - Painting requirements - Reckli requirements - Mould requirements - Reo Weights - Lifters - Cast in Plates - Grout tubes. - Mesh (Not sq m of Mesh, but based of how many sqm of Mesh to cover N panels) - Rebar schedule - Not every panel is estimated for rebar. Typical panels are calculated and applied across similar. - Quick turn around. Note We do not include ferrules in the take off. https://www.tek1.com.au/precast/precast-mto/
- Get link
- X
- Other Apps
Full check list is available here. Please supply checklist with every take off report you complete. - Please provide two MTO reports: (a) The first: is Koshy's Material List.xls.rpt (Please use the file here saved here. (click on link)) - see instructions on where to save it below. (b) The second: Excel - Material List - which shows all sub-totals. (c) IFC file. (d) db1 file (e) and if applicable, your .dwg line work file. - Where to save the .xls.rpt files? Ssave it to the appropriate file in your Tekla Program directory. In my computer it is here: C:UsersAll UsersTrimbleTekla Structures2023.0EnvironmentsAustralasiaGeneralcommon_reports You'll have to go into the file and add/edit fields if applicable. - I need the total tonnage: in email to me, and total in the spreadsheets We bill on tonnage. When you send your report: please put this in the body of your email. Please also add the same tonnage in your google spreadsheet. Please make sure that you do not double count "s...
- Get link
- X
- Other Apps
Full check list is available here. Please supply checklist with every take off report you complete. - Please provide two MTO reports: (a) The first: is Koshy's Material List.xls.rpt (Please use the file here saved here. (click on link)) - see instructions on where to save it below. (b) The second: Excel - Material List - which shows all sub-totals. (c) IFC file. (d) db1 file (e) and if applicable, your .dwg line work file. - Where to save the .xls.rpt files? Ssave it to the appropriate file in your Tekla Program directory. In my computer it is here: C:UsersAll UsersTrimbleTekla Structures2023.0EnvironmentsAustralasiaGeneralcommon_reports You'll have to go into the file and add/edit fields if applicable. - I need the total tonnage: in email to me, and total in the spreadsheets We bill on tonnage. When you send your report: please put this in the body of your email. Please also add the same tonnage in your google spreadsheet. Please make sure that you do not double count "s...
- Get link
- X
- Other Apps
Full Checklist Background: - ABC's entirely production line and jigs are optimised for a specific workflow. DO NOT deviate from their requirements. There is a need to be pedantic because otherwise things won't work - beams and steel will be wasted, delays will result, and we will be cursed to the high heavens. Rules: - Do not edit model. - Do not renumber anything. - Do not rotate ANYTHING. - Do not change the names of drawings. Name of the drawing should be the name of the truss. If there are any issues, msg client. Rotation and Flipping - check if rotation / flipping has happened - Check if any rotations happened. How? - (1) Everything with our client works: Left-to-Right. If something is not Left to right - then it may have been rotated. We need to alert our client to this. - (2) We have the PDFs. We must check the drawings against the pdfs and note where they are any discrepancies. If there are discrepancies - alert our client. Because Tekla may be rotating the drawing. - (...
- Get link
- X
- Other Apps
Full Checklist Background: - ABC's entirely production line and jigs are optimised for a specific workflow. DO NOT deviate from their requirements. There is a need to be pedantic because otherwise things won't work - beams and steel will be wasted, delays will result, and we will be cursed to the high heavens. Rules: - Do not edit model. - Do not renumber anything. - Do not rotate ANYTHING. - Do not change the names of drawings. Name of the drawing should be the name of the truss. If there are any issues, msg client. Rotation and Flipping - check if rotation / flipping has happened - Check if any rotations happened. How? - (1) Everything with our client happens Left to Right. If something is not Left to right - then it may have been rotated. We need to alert our client to this. - (2) We have the PDFs. We must check the drawings against the pdfs and note where they are any discrepancies. If there are discrepancies - alert our client. Because Tekla may be rotating the drawing. - ...
- Get link
- X
- Other Apps
Full Checklist Background: - ABC's entirely production line and jigs are optimised for a specific workflow. DO NOT deviate from their requirements. There is a need to be pedantic because otherwise things won't work - beams and steel will be wasted, delays will result, and we will be cursed to the high heavens. Rules: - Do not rotate ANYTHING. - Do not change the names of drawings. Name of the drawing should be the name of the truss. - Do not renumber anything. If there are any issues, msg client. Rotation - check if rotations happened - Check if any rotations happened. How? - (1) Everything with our client happens Left to Right. If something is not Left to right - then it may have been rotated. We need to alert our client to this. - (2) We have the PDFs. We must check the drawings against the pdfs and note where they are any discrepancies. If there are discrepancies - alert our client. Because Tekla may be rotating the drawing. - (3) After we do the drawings - then we should se...
- Get link
- X
- Other Apps
Full Checklist Background: - ABC's entirely production line and jigs are optimised for a specific workflow. DO NOT deviate from their requirements. There is a need to be pedantic because otherwise things won't work - beams and steel will be wasted, delays will result, and we will be cursed to the high heavens. Rules: - Do not rotate ANYTHING. - Do not change the names of drawings. Name of the drawing should be the name of the truss. - Do not renumber anything. If there are any issues, msg client. Rotation - check if rotations happened - Check if any rotations happened. How? - (1) Everything with our client happens Left to Right. If something is not Left to right - then it may have been rotated. We need to alert our client to this. - (2) We have the PDFs. We must check the drawings against the pdfs and note where they are any discrepancies. If there are discrepancies - alert our client. Because Tekla may be rotating the drawing. - (3) After we do the drawings - then we should se...
- Get link
- X
- Other Apps
Full Checklist Background: - ABC's entirely production line and jigs are optimised for a specific workflow. DO NOT deviate from their requirements. There is a need to be pedantic because otherwise things won't work - beams and steel will be wasted, delays will result, and we will be cursed to the high heavens. Rules: - Do not rotate ANYTHING. - Do not change the names of drawings. Name of the drawing should be the name of the truss. - Do not renumber anything. If there are any issues, msg client. Rotation - check if rotations happened - Check if any rotations happened. How? - (1) Everything with our client happens Left to Right. If something is not Left to right - then it may have been rotated. We need to alert our client to this. - (2) We have the PDFs. We must check the drawings against the pdfs and note where they are any discrepancies. Blue Angle Issue - When dimension beams, dimension just beams. Do not dimension to the end plates. Probably because they are cutting the bea...
- Get link
- X
- Other Apps
Full check list is available here. Please supply checklist with every take off report you complete. - Please provide two MTO reports: (a) The first: is Koshy's Material List.xls.rpt (Please use the file here saved here. (click on link)) - see instructions on where to save it below. (b) The second: Excel - Material List - which shows all sub-totals. (c) IFC file. (d) db1 file (e) and if applicable, your .dwg line work file. - Where to save the .xls.rpt files? Ssave it to the appropriate file in your Tekla Program directory. In my computer it is here: C:UsersAll UsersTrimbleTekla Structures2023.0EnvironmentsAustralasiaGeneralcommon_reports You'll have to go into the file and add/edit fields if applicable. - I need the total tonnage: in email to me, and total in the spreadsheets We bill on tonnage. When you send your report: please put this in the body of your email. Please also add the same tonnage in your google spreadsheet. Please make sure that you do not double count "s...
- Get link
- X
- Other Apps
Full check list is available here. Please supply checklist with every take off report you complete. - Please provide two MTO reports: (a) The first: is Koshy's Material List.xls.rpt (Please use the file here saved here. (click on link)) - see instructions on where to save it below. (b) The second: Excel - Material List - which shows all sub-totals. (c) IFC file. (d) db1 file (e) and if applicable, your .dwg line work file. - Where to save the .xls.rpt files? Ssave it to the appropriate file in your Tekla Program directory. In my computer it is here: C:UsersAll UsersTrimbleTekla Structures2023.0EnvironmentsAustralasiaGeneralcommon_reports You'll have to go into the file and add/edit fields if applicable. - I need the total tonnage: in email to me, and total in the spreadsheets We bill on tonnage. When you send your report: please put this in the body of your email. Please also add the same tonnage in your google spreadsheet. Please make sure that you do not double count "s...
- Get link
- X
- Other Apps
Full check list is available here. Please supply checklist with every take off report you complete. - Please provide two MTO reports: (a) The first: is Koshy's Material List.xls.rpt (Please use the file here saved here. (click on link)) - see instructions on where to save it below. (b) The second: Excel - Material List - which shows all sub-totals. (c) IFC file. (d) db1 file (e) and if applicable, your .dwg line work file. - Where to save the .xls.rpt files? Ssave it to the appropriate file in your Tekla Program directory. In my computer it is here: C:UsersAll UsersTrimbleTekla Structures2023.0EnvironmentsAustralasiaGeneralcommon_reports You'll have to go into the file and add/edit fields if applicable. - I need the total tonnage: in email to me, and total in the spreadsheets We bill on tonnage. When you send your report: please put this in the body of your email. Please also add the same tonnage in your google spreadsheet. Please make sure that you do not double count "s...
- Get link
- X
- Other Apps
Full check list is available here. Please supply checklist with every take off report you complete. - Please provide two MTO reports: (a) The first: is Koshy's Material List.xls.rpt (Please use the file here saved here. (click on link)) - see instructions on where to save it below. (b) The second: Excel - Material List - which shows all sub-totals. (c) IFC file. (d) db1 file (e) and if applicable, your .dwg line work file. - Where to save the .xls.rpt files? Ssave it to the appropriate file in your Tekla Program directory. In my computer it is here: C:UsersAll UsersTrimbleTekla Structures2023.0EnvironmentsAustralasiaGeneralcommon_reports You'll have to go into the file and add/edit fields if applicable. - I need the total tonnage: in email to me, and total in the spreadsheets We bill on tonnage. When you send your report: please put this in the body of your email. Please also add the same tonnage in your google spreadsheet. Please make sure that you do not double count "s...
- Get link
- X
- Other Apps
Steel Detailing for "Emu in the Sky - Sydney Airport" Click on image to view 3d model Tek1 have modeled the main structure and all the architectural elements with Tekla Strutures. The structural steel shop drawings and the whole steel detailing process was in collaboration with Engineers and fabrication shop supervisors at Chess Engineering. Tek1 has provided numerous suggestions in design, procurement of appropriate equipment, advise on design of jigs saving hundreds of thousands of dollars in the fabrication of the item. As of 11/08/2024 the work is still in progress About Us Steel Detailing and Drafting Services We've been providing detailing services and associated solutions for the past 16 years: Our Stack - We own 23 Tekla licences ( 2 Global + 21 India) - 8 Revit AEC licenses. - 8 Intellicad based dwg licenses Consisting of 7 Teams under very experienced team leads, we provide detailing services for Our Services: - Structural Steel Shop drawings(Tekla / Advance St...
- Get link
- X
- Other Apps
Steel Detailing for "Emu in the Sky - Sydney Airport" Click on image to view 3d model Tek1 have modeled the main structure and all the architectural elements with Tekla Strutures. The structural steel shop drawings and the whole steel detailing process was in collaboration with Engineers and fabrication shop supervisors at Chess Engineering. Tek1 has provided numerous suggestions in design, procurement of appropriate equipment, advise on design of jigs saving hundreds of thousands of dollars in the fabrication of the item. As of 11/08/2024 the work is still in progress About Us Steel Detailing and Drafting Services We've been providing detailing services and associated solutions for the past 16 years: Our Stack - We own 23 Tekla licences ( 2 Global + 21 India) - 8 Revit AEC licenses. - 8 Intellicad based dwg licenses Consisting of 7 Teams under very experienced team leads, we provide detailing services for Our Services: - Structural Steel Shop drawings(Tekla / Advance St...
- Get link
- X
- Other Apps
Steel Detailing for "Emu in the Sky - Sydney Airport" Click on image to view 3d model Tek1 have modeled the main structure and all the architectural elements with Tekla Strutures. The structural steel shop drawings and the whole steel detailing process was in collaboration with Engineers and fabrication shop supervisors at Chess Engineering. Tek1 has provided numerous suggestions in design, procurement of appropriate equipment, advise on design of jigs saving hundreds of thousands of dollars in the fabrication of the item. As of 11/08/2024 the work is still in progress About Us Steel Detailing and Drafting Services We've been providing detailing services and associated solutions for the past 16 years: Our Stack - We own 23 Tekla licences ( 2 Global + 21 India) - 8 Revit AEC licenses. - 8 Intellicad based dwg licenses Consisting of 7 Teams under very experienced team leads, we provide detailing services for Our Services: - Structural Steel Shop drawings(Tekla / Advance St...
- Get link
- X
- Other Apps
Steel Detailing for "Emu in the Sky - Sydney Airport" Click on image to view 3d model Tek1 have modeled the main structure and all the architectural elements with Tekla Strutures. The structural steel shop drawings and the whole steel detailing process was in collaboration with Engineers and fabrication shop supervisors at Chess Engineering. Tek1 has provided numerous suggestions in design, procurement of appropriate equipment, advise on design of jigs saving hundreds of thousands of dollars in the fabrication of the item. As of 11/08/2024 the work is still in progress About Us Steel Detailing and Drafting Services We've been providing detailing services and associated solutions for the past 16 years: Our Stack - We own 23 Tekla licences ( 2 Global + 21 India) - 8 Revit AEC licenses. - 8 Intellicad based dwg licenses Consisting of 7 Teams under very experienced team leads, we provide detailing services for Our Services: - Structural Steel Shop drawings(Tekla / Advance St...
- Get link
- X
- Other Apps
Background: - ABC's entirely production line and jigs are optimised for a specific workflow. DO NOT deviate from their requirements. There is a need to be pedantic because otherwise things won't work - beams and steel will be wasted, delays will result, and we will be cursed to the high heavens. Rules: - Do not rotate ANYTHING. - Do not change the names of drawings. Name of the drawing should be the name of the truss. Blue Angle Issue - When dimension beams, dimension just beams. Do not dimension to the end plates. Probably because they are cutting the beams and adding the end plates later. (i.e. their production facility is optimised for this workflow). Information - Pink Notes: pink notes in the model which mostly has informatCSBion like weld types and other information that are not necessary for a detailer. https://www.tek1.com.au/staff-memos/csb-standards-checklist/
- Get link
- X
- Other Apps
Background: - ABC's entirely production line and jigs are optimised for a specific workflow. DO NOT deviate from their requirements. There is a need to be pedantic because otherwise things won't work - beams and steel will be wasted, delays will result, and we will be cursed to the high heavens. Rules: - Do not rotate ANYTHING. - Do not change the names of drawings. Name of the drawing should be the name of the truss. Blue Angle Issue - When dimension beams, dimension just beams. Do not dimension to the end plates. Probably because they are cutting the beams and adding the end plates later. (i.e. their production facility is optimised for this workflow). Information - Pink Notes: pink notes in the model which mostly has information like weld types and other information that are not necessary for a detailer. https://www.tek1.com.au/staff-memos/csb-standards-checklist/
- Get link
- X
- Other Apps
Background: - ABC's entirely production line and jigs are optimised for a specific workflow. DO NOT deviate from their requirements. There is a need to be pedantic because otherwise things won't work - beams and steel will be wasted, delays will result, and we will be cursed to the high heavens. Rules: - Do not rotate ANYTHING. - Do not change the names of drawings. Name of the drawing should be the name of the truss. Blue Angle Issue - When dimension beams, dimension just beams. Do not dimension to the end plates. Probably because they are cutting the beams and adding the end plates later. (i.e. their production facility is optimised for this workflow). Information - Pink Notes: pink notes in the model which mostly has information like weld types and other information that are not necessary for a detailer. https://www.tek1.com.au/staff-memos/csb-standards-checklist/
- Get link
- X
- Other Apps
Background: - ABC's entirely production line and jigs are optimised for a specific workflow. DO NOT deviate from their requirements. There is a need to be pedantic because otherwise things won't work - beams and steel will be wasted, delays will result, and we will be cursed to the high heavens. Rules: - Do not rotate ANYTHING. - Do not change the names of drawings. Name of the drawing should be the name of the truss. Blue Angle Issue - When dimension beams, dimension just beams. Do not dimension to the end plates. Probably because they are cutting the beams and adding the end plates later. (i.e. their production facility is optimised for this workflow). Information - Pink Notes: pink notes in the model which mostly has informatCSBion like weld types and other information that are not necessary for a detailer. https://www.tek1.com.au/staff-memos/csb-standards-checklist/
- Get link
- X
- Other Apps
Background: - ABC's entirely production line and jigs are optimised for a specific workflow. DO NOT deviate from their requirements. There is a need to be pedantic because otherwise things won't work - beams and steel will be wasted, delays will result, and we will be cursed to the high heavens. Rules: - Do not rotate ANYTHING. - Do not change the names of drawings. Name of the drawing should be the name of the truss. Blue Angle Issue - When dimensioning beams, dimension just beams. Do not dimension to the endplates. Probably because they are cutting the beams and adding the end plates later. (i.e. their production facility is optimised for this workflow). Information - Pink Notes: pink notes in the model which mostly has information like weld types and other informations that are not necessary for a detailer. https://www.tek1.com.au/staff-memos/csb-standards-checklist/
- Get link
- X
- Other Apps
Background: - ABC's entirely production line and jigs are optimised for a specific workflow. DO NOT deviate from their requirements. There is a need to be pedantic because otherwise things won't work - beams and steel will be wasted, delays will result, and we will be cursed to the high heavens. Rules: - Do not rotate ANYTHING. - Do not change the names of drawings. Name of the drawing should be the name of the truss. Blue Angle Issue - When dimensioning beams, dimension just beams. Do not dimension to the endplates. Probably because they are cutting the beams and adding the end plates later. (i.e. their production facility is optimised for this workflow). Information - Pink Notes: pink notes in the model which mostly has information like weld types and other informations that are not necessary for a detailer. https://www.tek1.com.au/staff-memos/csb-standards-checklist/
- Get link
- X
- Other Apps
Background: - ABC's entirely production line and jigs are optimised for a specific workflow. DO NOT deviate from their requirements. There is a need to be pedantic because otherwise things won't work - beams and steel will be wasted, delays will result, and we will be cursed to the high heavens. Rules: - Do not rotate ANYTHING. - Do not change the names of drawings. Name of the drawing should be the name of the truss. Blue Angle Issue - When dimensioning beams, dimension just beams. Do not dimension to the endplates. Probably because they are cutting the beams and adding the end plates later. (i.e. their production facility is optimised for this workflow). Information - Pink Notes: pink notes in the model which mostly has information like weld types and other informations that are not necessary for a detailer. https://www.tek1.com.au/staff-memos/csb-standards-checklist/
- Get link
- X
- Other Apps
Background: - CSB's entirely production line and jigs are optimised for a specific workflow. DO NOT deviate from their requirements. There is a need to be pedantic because otherwise things won't work - beams and steel will be wasted, delays will result, and we will be cursed to the high heavens. Rules: - Do not rotate ANYTHING. - Do not change the names of drawings. Name of the drawing should be the name of the truss. Blue Angle Issue - When dimensioning beams, dimension just beams. Do not dimension to the endplates. Probably because they are cutting the beams and adding the end plates later. (i.e. their production facility is optimised for this workflow). Information - Pink Notes: pink notes in the model which mostly has information like weld types and other informations that are not necessary for a detailer. https://www.tek1.com.au/staff-memos/csb-standards-checklist/
- Get link
- X
- Other Apps
Background: - ABC's entirely production line and jigs are optimised for a specific workflow. DO NOT deviate from their requirements. There is a need to be pedantic because otherwise things won't work - beams and steel will be wasted, delays will result, and we will be cursed to the high heavens. Rules: - Do not rotate ANYTHING. - Do not change the names of drawings. Name of the drawing should be the name of the truss. Blue Angle Issue - When dimensioning beams, dimension just beams. Do not dimension to the endplates. Probably because they are cutting the beams and adding the end plates later. (i.e. their production facility is optimised for this workflow). Information - Pink Notes: pink notes in the model which mostly has information like weld types and other informations that are not necessary for a detailer. https://www.tek1.com.au/staff-memos/csb-standards-checklist/
- Get link
- X
- Other Apps
Background: - CSB's entirely production line and jigs are optimised for a specific workflow. DO NOT deviate from their requirements. There is a need to be pedantic because otherwise things won't work - beams and steel will be wasted, delays will result, and we will be cursed to the high heavens. Rules: - Do not rotate ANYTHING. - Do not change the names of drawings. Name of the drawing should be the name of the truss. Blue Angle Issue - When dimensioning beams, dimension just beams. Do not dimension to the endplates. Probably because they are cutting the beams and adding the end plates later. (i.e. their production facility is optimised for this workflow). Information - Pink Notes: pink notes in the model which mostly has information like weld types and other informations that are not necessary for a detailer. https://www.tek1.com.au/staff-memos/csb-standards-checklist/
- Get link
- X
- Other Apps
Full check list is available here. Please supply checklist with every take off report you complete. - Please provide two MTO reports: (a) The first: is Koshy's Material List.xls.rpt (b) The second is your standard material list take off report(s). (c) IFC file. (d) db1 file (e) and if applicable, your .dwg line work file. - Please use the file here saved here. (click on link) - and save it to the appropriate file in your Tekla Program directory. In my computer it is here: C:UsersAll UsersTrimbleTekla Structures2023.0EnvironmentsAustralasiaGeneralcommon_reports You'll have to go into the file and add/edit fields if applicable. - I need the total tonnage: in email to me, and total in the spreadsheets We bill on tonnage. When you send your report: please put this in the body of your email. Please also add the same tonnage in your google spreadsheet. Please make sure that you do not double count "sub-totals" otherwise you will get an incorrect tonnage report. The client ...
- Get link
- X
- Other Apps
Full check list is available here. Please supply checklist with every take off report you complete. - Please provide two MTO reports: (a) The first: is Koshy's Material List.xls.rpt (b) The second is your standard material list take off report(s). (c) IFC file. (d) db1 file (e) and if applicable, your .dwg line work file. - Please use the file here saved here. (click on link) - and save it to the appropriate file in your Tekla Program directory. In my computer it is here: C:UsersAll UsersTrimbleTekla Structures2023.0EnvironmentsAustralasiaGeneralcommon_reports You'll have to go into the file and add/edit fields if applicable. - I need the total tonnage: in email to me, and total in the spreadsheets We bill on tonnage. When you send your report: please put this in the body of your email. Please also add the same tonnage in your google spreadsheet. Please make sure that you do not double count "sub-totals" otherwise you will get an incorrect tonnage report. The client ...
- Get link
- X
- Other Apps
Background: - CSB's entirely production line and jigs are optimised for a specific workflow. DO NOT deviate from their requirements. There is a need to be pedantic because otherwise things won't work - beams and steel will be wasted, delays will result, and we will be cursed to the high heavens. Rules: - Do not rotate ANYTHING. - Do not change the names of drawings. Name of the drawing should be the name of the truss. Blue Angle Issue - When dimensioning beams, dimension just beams. Do not dimension to the endplates. Probably because they are cutting the beams and adding the end plates later. (i.e. their production facility is optimised for this workflow). Information - Pink Notes: pink notes in the model which mostly has information like weld types and other informations that are not necessary for a detailer. https://www.tek1.com.au/staff-memos/csb-standards-checklist/