New generation of generative design software for thermal & flow topology optimization for optimal heat sink design
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
The 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`,
},
})
},
})
The SWAPI - Star Wars API is a treasure trove of structured data from the Star Wars universe. It's a go-to resource for fetching information about planets, spaceships, vehicles, people, films, and species from the iconic franchise. Using Pipedream, you can harness this data to create automations and workflows that trigger based on specific criteria from SWAPI. For instance, you could set up a workflow that notifies you when new data is added, enrich customer profiles with their favorite Star Wars characters, or even use it for trivia games by pulling random facts.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
swapi: {
type: "app",
app: "swapi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://swapi.dev/api/films/1/`,
})
},
})