sim_meta

-1 rows


Description

Stores high-level information about simulation tests.

Columns

Column Type Size Nulls Auto Default Children Parents Comments
sim_id serial 10 nextval('sim_meta_sim_id_seq'::regclass)
sim_data.sim_id sim_data_sim_id_fkey R
sim_data_summary_10min.sim_id Implied Constraint R
sim_data_summary_30s.sim_id Implied Constraint R
sim_data_summary_daily.sim_id Implied Constraint R
sim_data_summary_hourly.sim_id Implied Constraint R

Unique identifier for the simulation test. Auto-incremented upon insertion.

launched_at timestamptz 35,6 now()

The date and time the simulation test was launched.

user_id text 2147483647 null

The user who launched the simulation test.

status text 2147483647 null

The status of the simulation test. Can be idle, rest, charge, discharge, problem, or other.

cell_type_id int4 10 null
cells_meta.cell_type_id sim_meta_cell_type_id_fkey R

The cell used in the simulation test. References the cell_type_id in the cells_meta table.

test_id int4 10 null
test_meta.test_id sim_meta_test_id_fkey R

The test the simulation test is associated with. References the test_id in the test_meta table.

configs jsonb 2147483647 null

The configuration files used in the test.

other_details jsonb 2147483647 null

Other details about the simulation test.

Indexes

Constraint Name Type Sort Column(s)
sim_meta_pkey Primary key Asc sim_id

Relationships