New generation of generative design software for thermal & flow topology optimization for optimal heat sink design
Go to siteThe Diabatix ColdStream API provides automated thermal analysis capabilities, allowing users to streamline the cooling design process for various components and devices. With this API, you can automate the design of thermal systems, optimize existing cooling solutions, and simulate different scenarios to find the most effective thermal management strategy. In Pipedream, you can leverage this API to build automated workflows that integrate thermal analysis into your engineering cycles, ensuring your designs meet the necessary thermal specifications before physical prototypes are ever built.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
diabatix_coldstream: {
type: "app",
app: "diabatix_coldstream",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://identity.coldstream.diabatix.com/users/me`,
headers: {
Authorization: `Bearer ${this.diabatix_coldstream.$auth.access_token}`,
"accept": `application/json`,
},
})
},
})
Automated Thermal Analysis Reporting: Create a workflow in Pipedream that triggers every time a new design is uploaded to your cloud storage (e.g., Google Drive). The workflow sends the design to the Diabatix ColdStream API to perform thermal analysis and then emails the report to your engineering team or saves it to a dedicated report directory.
Design Optimization Loop: Set up a continuous optimization process where initial thermal design parameters are sent to the ColdStream API. The results are then evaluated, and if they don't meet specified performance criteria, the parameters are adjusted and the design is resubmitted. This loop can continue until the thermal performance is optimized, all automated within Pipedream.
Thermal Analysis Dashboard Integration: Build a Pipedream workflow that integrates with a dashboard app like Geckoboard. Use Diabatix ColdStream API to run thermal analyses at regular intervals or upon specific events, and then push the summarized data to Geckoboard. This allows real-time monitoring of thermal performance metrics for ongoing projects.
Retrieves the result of a specific simulation from ColdStream. See the documentation
Starts a new simulation in ColdStream with specified parameters and submits the created case. See the documentation
Updates an existing project with new parameters or data in ColdStream. See the documentation
Diabatix ColdStream uses OAuth authentication. When you connect your Diabatix ColdStream account, Pipedream will open a popup window where you can sign into Diabatix ColdStream and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Diabatix ColdStream API.
Pipedream requests the following authorization scopes when you connect your account:
POST
https://identity.coldstream.diabatix.com/account/login
accept: application/json
content-type: application/json
email={{custom_fields.email}}
&
password={{custom_fields.password}}
POST
https://identity.coldstream.diabatix.com/account/login
content-type: application/json
accept: application/json
email={{custom_fields.email}}
&
password={{custom_fields.password}}