Trimble Tekla Tedds 2021 SP2 V23.2.000 version is a structural and civil engineering calculation software, Tekla Tedds can reduce repetitive manual calculations. It can provide reliable and accurate design of multi-material elements because of its extensive, easy-to-check quality assurance calculation library. Use can automate all repetitive structural calculations, fully meet the needs of structural engineering workflow, designed to help you automate repetitive structural calculations. Choose from our regularly updated library of calculations or write your own and create professional documentation every time.
Combine structural calculations with 2D frame analysis. Forget about time-consuming manual calculations and cumbersome spreadsheets. Automate your work with Tekla Tedds. It has a large library of design modules, including loading – earthquake and wind loads, analysis – continuous beam and rolling loads, steel structure design – beams, torsion surfaces, columns, connections – base plates and bolts, etc.! Tekla Tedds 2021 structural analysis and design calculation software offers new and improved calculations including base slab, precast hollow-core slab, concrete foundation and timber rack loads to meet multiple design codes.
Trimble Tekla Tedds 2021 New Features:
1. Quality Assurance Library
Tedds is consistently quick to provide answers. With regularly updated quality assurance libraries for multi-material calculations, you can avoid errors and streamline code-compliant design delivery.
2. Transparent computing
Tedds calculations are easy to see and can be quickly reviewed and verified. Unlike spreadsheets that are difficult to check, Tedds puts you in control of calculations that are easy to check and approve.
3. Professional documents
With Tedds’ desktop publishing capabilities, engineers can quickly create and customize content output for competitive, professional project documentation. You can also get Tekla Structural Designer 2023 and Tekla Structures 2023 By LicensedSoft.
4. Using Tedds
you can quickly generate designs that match your code
Easily create, save and share custom calculations
Enhanced Quality Assurance
Improve document professionalism
5. Tedds engineering library
The Tedds engineering library contains 100 pre-written, quality-assured structural and civil engineering calculations that provide the standard for faster, more reliable structural element design. Calculations can be performed using a range of international design codes: European codes (Sweden, Norway, Finland, Great Britain, Ireland, Singapore, Malaysia), American, British Standards, Australian and Canadian design codes.
Update log
Trimble has released Tekla Tedds 2021 SP2 (23.2.0000) and Engineering Libraries (August 2021). This release includes many enhancements and problem resolutions.
Tekla Tedds 2021 – Service Pack 2
1. Emphasize
Write a custom calculation
New optimizations when Word Calc items are stored in the Calc library can reduce the storage size of individual calc items by up to 75%. Smaller items will be calculated faster due to less data to process.
Tedds content authored in Microsoft Word is saved to the Calc library in Rich Text Format (RTF). This plain text format uses special tags to define formatting and other document information. Microsoft Word is designed to maintain high fidelity of data retention when importing and exporting data in RTF format, and therefore includes many tags in RTF that would normally be redundant in the context of Tedds.
Now, when RTF data is saved to the Calc library, it is preprocessed to remove unnecessary information in the RTF that does not affect how the content is calculated or merged back into the Tedds document.
2. Word teddy bear
User interfaces embedded in documents now support the _CalcUI variable. This variable can be used to conditionally show or hide the user interface allowing calculation automation, for example using Tedds batch design.
User interfaces created with the Interface Designer Pro application can use a new optional debug command button on the toolbar that can be used to execute custom expressions to perform actions that help resolve errors.
Enhanced Save Marked Calculate Items command. The command has been optimized to ensure that calculated items are only saved if the item content for properties has been modified, and the document insertion point is now restored to its original position after the command completes.
3. Progress log
New option for indenting items listed in the progress log. The displayed indent increases as each Calc item is calculated and decreases as the item completes its calculation so that you can visually determine which items in the log relate to which parent calculated item.
For example, debug events when using WatchVar and WatchFunction are now logged with their own debug entries.
Updated the styles and default color scheme used by the progress log to improve visual fidelity and overall consistency with the rest of the product.
4. Emphasize
Eight new functions that you can use when writing custom calculations.
1. Cube Root
Calculates the cube root of a value, including support for negative values.
cube root( 8 ) = 2
cube root( -8 ) = -2
2. String list functions
String list functions allow a list of values to be managed as a single string value, where each item in the string is separated by a list delimiter (usually a comma). For example, you can use such a list to record where on the beam a result of interest occurs.
New functionality included in this service pack makes it easier to work with such data.
Example
Two separate operations result in two lists of positions of interest on the beam that are currently unsorted, create a new list containing all positions (in mm) in both lists, in order from smallest to largest, without any repetition.
a1 = 0.0m; a2 = 0.575m; a3 = 0.63m; a4 = 1.2m
list1 = StringList( “F0”, “mm”, a1, a2, a3, a4 ) = “0,575,630,1200”
b1 = 0.0m; b2 = 0.325m; b3 = 0.63m; b4 = 0.2m
list2 = StringList( “F0”, “mm”, b1, b2, b3, b4 ) = “0,325,630,200”
position = StrListUnion( StrListSort(list1), StrListSort(list2 ) ) = “0,200,325,575,630,1200”
3. StrListJoin
StrListJoin can be used to join two lists of strings.
list1 = StrList( 1, 2, 3 )
list2 = StrList( 4, 5, 6 )
StrListJoin( list1, list2 ) = “1,2,3,4,5,6”
StrListJoin( list2, list1 ) = “4, 5,6,1,2,3”
4. Uniquelist of strings
Removes all consecutive duplicate elements from a sorted list of strings.
list = StrList( 1, 2, 3, 3, 7, 8, 8, 9, 10, 10, 10, 11 )
StrListUnique( list ) = “1,2,3,7,8,9,10,11”
5. Linked List Merge
Merges two sorted lists of strings into a single list of strings.
list1 = StrList( 1, 3, 7 )
list2 = StrList( 2, 6, 8 )
StrListMerge( list1, list2 ) = “1,2,3,6,7,8”
6. Linked-list union
Creates a sorted list of strings consisting of elements present in one or both sorted lists of strings.
list1 = StrList( 1, 2, 3, 5, 7, 9 )
list2 = StrList( 2, 4, 5, 6, 8, 9 )
StrListUnion( list1, list2 ) = “1,2,3,4,5, 6,7,8,9”
7. StrListIntersection
creates from two sorted lists of strings a sorted list of strings consisting of the elements present in both lists.
list1 = StrList ( 1, 2, 3, 5, 7, 9 )
list2 = StrList( 2, 4, 5, 6, 8, 9 )
StrListIntersection( list1, list2 ) = “2,5,9”
8. StrListDifference
creates, from two sorted lists of strings, a sorted list of strings consisting of elements present in the first list but not in the second.
list1 = StrList ( 1, 2, 3, 5, 7, 9 )
list2 = StrList( 2, 4, 5, 6, 8, 9 )
StrListDifference( list1, list2 ) = “1,3,7”
StrListDifference( list2, list1) = “4,6,8”
9. StrListSymmetricDifference
creates a sorted string list containing elements that exist in either, but not both, of the two sorted string lists.
list1 = StrList ( 1, 2, 3, 5, 7, 9 )
list2 = StrList( 2, 4, 5, 6, 8, 9 )
StrListSymmetricDifference( list1, list2 ) = “1,3,4,6,7, 8”
5. Other updates
1. Security
[TEDDS-5564] Updated the embedded Chromium browser (CEF) to address security vulnerabilities
[TEDDS-5558] Updated System.Text.Encodings.Web to 4.7.2
2. Writing Custom Calculations
[TEDDS-5619] Modified the behavior of the developer commands used to create calculation examples to always save variables in SI units to avoid numeric precision issues when US examples are saved in US units.
[TEDDS-5620] Enhanced VerifyEqual so that when the results differ, a warning message indicates the percentage difference between the two values.
[TEDDS-5546] Fixed an issue where the Data List Designer app did not initialize the “Hidden Grid” and “Fixed Splitter” options properly, causing them to be randomly applied when building a Data List.
Tekla Tedds Engineering Library (May 2021)
3. Content
UK and Asia
The specific specification (BS8500)
is updated according to BS8500-1:2015+A2:2019. Improved user experience so that most input can be entered on the main page of the UI.
other updates
- Updated documentation for new and updated features in Tedds 2021 Service Pack 1, including:
- New CubeRoot function.
- New StrListJoin, StrListMerge, StrListUnique, StrListUnion, StrListIntersection, StrListDifference, and StrListSymmetricDifference functions
- Updated sqrt to include new alias SquareRoot.
- Updated SaveSectionVarsCalcItem and SaveSectionVarsTextFile to save values in SI units by default.
Fundamental Analysis and Design (EN1992/EN1997) - [Tedds-5588] – Corrected items for showing passive sliding resistance checks in summary output.
- [Tedds-5532] – Corrected analytical models for multi-column pad foundations and multi-wall strip foundations.
- [Tedds-5531] – Adjusted the UI to allow the user to select which axes to display analytical model, moment and shear plots.
- Sketches updated for global compatibility.
- Shelving Panel Design for Timber Frames (EN1995)
- [TEDDS-5589] – Corrected wrong arguments in function errors related to output control variables.
USA
Foundation Analysis and Design (ACI318)
enhanced to allow an optional foundation to be defined for each column or wall. The user experience has also been improved to provide more detailed information in the user interface and output documentation when designs go out of scope, and now also provides computable results for partial designs.
other updates
- Updated documentation for new and updated features in Tedds 2021 Service Pack 1, including:
- New CubeRoot function.
- New StrListJoin, StrListMerge, StrListUnique, StrListUnion, StrListIntersection, StrListDifference, and StrListSymmetricDifference functions
- Updated sqrt to include new alias SquareRoot.
- Updated SaveSectionVarsCalcItem and SaveSectionVarsTextFile to save values in SI units by default.
- Fundamental Analysis and Design (ACI318)
- [TEDDS-5596] 1 – Fixed expression error “undefined variable ‘_CriticalSLSLC'”
- Fixed overall design preview utilization to account for results in both directions.
- Minor improvements to the user interface.
- RC Wall Design (ACI318)
- [TEDDS-5616]1 – Corrected a bug that misidentified unsupported slender wall designs.
Europe
- Updated documentation for new and updated features in Tedds 2021 Service Pack 1, including:
- New CubeRoot function.
- New StrListJoin, StrListMerge, StrListUnique, StrListUnion, StrListIntersection, StrListDifference, and StrListSymmetricDifference functions
- Updated sqrt to include new alias SquareRoot.
- Updated SaveSectionVarsCalcItem and SaveSectionVarsTextFile to save values in SI units by default.
- Fundamental Analysis and Design (EN1992/EN1997)
- [Tedds-5588]1 – Corrected item for showing passive sliding resistance check in summary output.
- [Tedds-5532]1 – Corrected analytical models for multi-column pad foundations and multi-wall strip foundations.
- [Tedds-5531]1 – Adjusted the UI to allow the user to select which axes to display analytical model, moment and shear plots.
- Sketches updated for global compatibility.
Australia
- Computational Writing Documentation
- Updated documentation for new and updated features in Tedds 2021 Service Pack 1, including:
- New CubeRoot function.
- New StrListJoin, StrListMerge, StrListUnique, StrListUnion, StrListIntersection, StrListDifference, and StrListSymmetricDifference functions
- Updated sqrt to include new alias SquareRoot.
- Updated SaveSectionVarsCalcItem and SaveSectionVarsTextFile to save values in SI units by default.
Canada
- Computational Writing Documentation
- Updated documentation for new and updated features in Tedds 2021 Service Pack 1, including:
- New CubeRoot function.
- New StrListJoin, StrListMerge, StrListUnique, StrListUnion, StrListIntersection, StrListDifference, and StrListSymmetricDifference functions
- Updated sqrt to include new alias SquareRoot.
- Updated SaveSectionVarsCalcItem and SaveSectionVarsTextFile to save values in SI units by default.
System Requirements:
Tekla Structural Designer 2021 hardware required.
System Requirements for Effective Operation
- CPU: Multi-core Intel i5 series or above, Xeon or AMD equivalent
highest affordable performance. - Memory: 16GB (32GB or more)
Memory required are highly dependent on model content. - OS: 64-bit Microsoft Windows 8.1 / 10
OS must be running the latest service pack/update. - Graphics: 1600 x 900 resolution (1920 x 1080 or higher)
1GB or higher of dedicated RAM.
Utilizes HOOPS Visualize, a third party graphics engine provided by Tech Soft 3D. To check adapter compatibility, visit the HOOPS developer website for HOOPS 20.x, DirectX, and OpenGL required. - Disk Space: 1GB or more available for installation
operational disk space required are highly dependent on model content. - Internet connection: Required to access online services and some documents.