Siemensmcdrivesacxmodelconfiguration Datapackage Container __hot__ Download Better -
Siemens.MC.Drives.Acx.Model.ConfigurationData.PackageContainer is a specialized software component required by the TIA Portal
(Totally Integrated Automation) to support specific motion control hardware and drive configurations. Errors regarding this missing package typically occur when opening a project that uses advanced drive functions not included in the base TIA Portal installation. Siemens SiePortal Understanding the Package This package is part of the SINAMICS Startdrive
ecosystem or specialized toolboxes for high-end motion control, such as SINUMERIK MC
. It provides the necessary "model data" for TIA Portal to recognize and parameterize specific drive variants. Siemens SiePortal How to Obtain and Install the Package
To resolve errors or obtain the latest version of this configuration data, follow these steps: Update SINAMICS Startdrive Ensure you have the latest version of SINAMICS Startdrive
installed. Most of these drive configuration containers are bundled with Startdrive updates or specific service packs. Download via Siemens SiePortal Authorized downloads are available on (formerly Industry Online Support). Siemens
Search for the specific package name: "Siemens.MC.Drives.Acx.Model.ConfigurationData.PackageContainer". Hardware Support Packages (HSP) related to your TIA Portal version (e.g., V17, V18, V19). Install Hardware Support Packages (HSP)
If the package is provided as an HSP, install it directly within TIA Portal: Options > Support packages Add from file system and browse to your downloaded file.
(note: all TIA Portal instances must be closed for installation to complete). Check for Specialized Toolboxes If you are working with SINUMERIK MC, you may need the SINUMERIK MC STEP 7 Toolbox
, which often contains the specific "Acx" model data required for integration. Siemens SiePortal Important Notes Security & Registration : Downloading software from Siemens typically requires a free registered account and compliance with export control regulations. Version Matching
: Ensure the package version matches your TIA Portal version. For example, a project created in V17 may require specific V17-compatible package containers. Avoid Third-Party Links Store the ACX container in a shared engineering drive (e
: Be cautious of unofficial download links (e.g., Google Drive or forums) as they may contain incomplete or modified files that could corrupt your engineering environment. Siemens SiePortal exact version of the package needed for your specific TIA Portal project?
5. Pro Tip: “Better” Means Automation-Ready
Instead of downloading manually each time:
- Store the ACX container in a shared engineering drive (e.g.,
Z:\Siemens_Library\ACX\) - Use scripted import via SCOUT’s automation interface (
.xlsbbatch import) - For large fleets, deploy the container via Siemens License Manager as a version-controlled asset
Step 2: Build the DataPackage Container
Use the ContainerBuilder_CLI.exe (part of Siemens Drive Engineering Toolkit):
ContainerBuilder_CLI -create -source "C:\MC_Drive_Config" -output "MC_Drive_Rev2.sinc" -include_fw -version "2.1.0"
The resulting .sinc (or .dcp) file contains:
- /param/ (parameter sets)
- /firmware/ (cu_.bin, power_.bin)
- /safety/ (f_params.saf)
- /manifest.json
Step 1: Obtain the Correct ACX DataPackage Container
Navigate to the official Siemens SIOS page. Search for your specific MC Drive model (e.g., "6SL3210-5FE10-8UF0"). Under "Software & Tools," look for "ACX Configuration Package" or "Drive DataPackage Container." support configurable chunk sizes.
Pro Tip for a Better Download: Do not download directly to your engineering PC’s Downloads folder. Create a dedicated repository:
D:\Siemens_Drive_Containers\[Drive_Type]\[Date]. This prevents cross-contamination.
1. Optimize Network Priority (QoS)
If you are downloading the DataPackage via PROFINET or Ethernet, the drive is likely competing with other network traffic. By accessing the switch management interface and configuring Quality of Service (QoS), you can temporarily assign higher priority to the configuration traffic (often flagged under specific VLAN tags or ports) during the maintenance window. This ensures the download stream isn't throttled by background I/O cyclics.
6.3 Integrate into Your PLC Code
From TIA Portal, call Siemens Download_DriveContainer block (available in the DriveLib library) to trigger container download from HMI.
The Role of the DataPackage Container
Think of a DataPackage Container as a zip file on steroids. It bundles:
- Parameter sets (p-values, drive parameters)
- Firmware update binaries
- Safety Integrated configurations
- Communication profiles (PROFINET, EtherNet/IP)
- Engineering metadata (for TIA Portal, Startdrive, or third-party systems)
When applied to an MC Drive (like the Sinamics S210, S120, or G220 series), the ACX container ensures that the entire drive personality is captured in a single, cryptographically verifiable package.
Error handling & edge cases
- Corrupted/incomplete file: delete partial and notify user; offer resume.
- Version mismatch: return 412 and offer compatible versions.
- Delta not available: fallback to full download.
- Slow/unstable network: retry with exponential backoff; support configurable chunk sizes.