fuel type table structure

Contents

fuel type table structure#

Table that denotes the vehicle fuel types supported for vehicles simulated in POLARIS Primarily used for descrbing vehicle characteristics when used along with Autonomie.

Static table. POLARIS does not modify the table.

Table Structure#

Field

Type

NULL allowed

Default Value

Foreign key

Description

type_id*

INTEGER

NO

Unique identifier for fuel type

type

TEXT

NO

‘’

Text input for type of fuel Values at type.

(* - Primary key)

The SQL statement for table and index creation is below.

CREATE TABLE "Fuel_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

GASOLINE

1

DIESEL

2

CNG

3

H2

4

ELECTRIC

5

HUMAN