powertrain type table structure

Contents

powertrain type table structure#

Table denoting the different powertrain types available in POLARIS. Primarily used for descrbing vehicle characteristics when used along with Autonomie. Static table. Table is not modified by POLARIS

Table Structure#

Field

Type

NULL allowed

Default Value

Foreign key

Description

type_id*

INTEGER

NO

Unique identifier for the powertrain type

type

TEXT

NO

‘’

Text description of the powertrain Values at type.

(* - Primary key)

The SQL statement for table and index creation is below.

CREATE TABLE "Powertrain_Type" (
  "type_id" INTEGER NOT NULL PRIMARY KEY,
  "type" TEXT NOT NULL DEFAULT ''
)

Enums#

The following enums are used in this table.

type#

Enum Values#

Value

Description

0

CONVENTIONAL

1

HEV

2

PHEV

3

BEV_SHORT

4

BEV_LONG

5

FCEV

6

CONVENTIONAL_48V

7

BEV_MICRO

8

MECHANICAL