Diabatix ColdStream

New generation of generative design software for thermal & flow topology optimization for optimal heat sink design

Integrate the Diabatix ColdStream API with the Supabase API

Setup the Diabatix ColdStream API trigger to run a workflow which integrates with the Supabase API. Pipedream's integration platform allows you to integrate Diabatix ColdStream and Supabase remarkably fast. Free for developers.

Delete Row with Supabase API on New Project Upgraded from Diabatix ColdStream API
Diabatix ColdStream + Supabase
 
Try it
Delete Row with Supabase API on New Simulation Completed from Diabatix ColdStream API
Diabatix ColdStream + Supabase
 
Try it
Fetch Simulation Results with Diabatix ColdStream API on New Row Added from Supabase API
Supabase + Diabatix ColdStream
 
Try it
Fetch Simulation Results with Diabatix ColdStream API on New Webhook Event (Instant) from Supabase API
Supabase + Diabatix ColdStream
 
Try it
Insert Row with Supabase API on New Project Upgraded from Diabatix ColdStream API
Diabatix ColdStream + Supabase
 
Try it
New Project Upgraded from the Diabatix ColdStream API

Emit new event when a specific project has been upgraded or edited in ColdStream.

 
Try it
New Simulation Completed from the Diabatix ColdStream API

Emit new event when a simulation has been successfully completed.

 
Try it
New Row Added from the Supabase API

Emit new event for every new row added in a table. See documentation here

 
Try it
New Webhook Event (Instant) from the Supabase API

Emit new event for every insert, update, or delete operation in a table. This source requires user configuration using the Supabase website. More information in the README. Also see documentation here

 
Try it
Fetch Simulation Results with the Diabatix ColdStream API

Retrieves the result of a specific simulation from ColdStream. See the documentation

 
Try it
Delete Row with the Supabase API

Deletes row(s) in a database. See the docs here

 
Try it
Insert Row with the Supabase API

Inserts a new row into a database. See the docs here

 
Try it
Run Simulation with the Diabatix ColdStream API

Starts a new simulation in ColdStream with specified parameters and submits the created case. See the documentation

 
Try it
Update Project in ColdStream with the Diabatix ColdStream API

Updates an existing project with new parameters or data in ColdStream. See the documentation

 
Try it

Overview of Diabatix ColdStream

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.

Connect Diabatix ColdStream

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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`,
      },
    })
  },
})

Overview of Supabase

Supabase is a real-time backend-as-a-service that provides developers with a suite of tools to quickly build and scale their applications. It offers database storage, authentication, instant APIs, and real-time subscriptions. With the Supabase API, you can perform CRUD operations on your database, manage users, and listen to database changes in real time. When integrated with Pipedream, you can automate workflows that react to these database events, synchronize data across multiple services, or streamline user management processes.

Connect Supabase

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    supabase: {
      type: "app",
      app: "supabase",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.supabase.$auth.subdomain}.supabase.co/rest/v1/`,
      headers: {
        Authorization: `Bearer ${this.supabase.$auth.service_key}`,
        "apikey": `${this.supabase.$auth.service_key}`,
      },
    })
  },
})