Renault KZ
The Renault KZ was a mid-size car or large family car manufactured by Renault from 1923 to 1931.
Renault KZ | |
---|---|
![]() | |
Overview | |
Manufacturer | Renault |
Also called | Renault Type KZ Renault Primaquatre |
Production | 1923-1931 |
Assembly | Billancourt, France |
Designer | Louis Renault |
Body and chassis | |
Class | Mid-size / Large family car (D) |
Body style | 4-door Torpedo, 4-door Sedan, 2-door Truck |
Layout | FR |
Powertrain | |
Engine | 2120 cc I4, 35 hp |
Transmission | 3-speed manual |
Dimensions | |
Wheelbase | 2,800 mm (110.2 in) |
Length | 3,800 mm (149.6 in) |
Width | 1,640 mm (64.6 in) |
Curb weight | 1,320 kg (2,910 lb) |
Chronology | |
Predecessor | Renault GS Renault IG |
Successor | Renault Primaquatre Renault Vivaquatre |
Details and Evolutions
The KZ was the replacement of the Type GS and the Type IG and its intention was to be a rival of the Citroen Type C in the class called "populaires" (economic). The car had a 4-cylinder engine of 2120 cc, 33 cm larger than its predecessors.
In 1927 three new models arrived, the KZ1, KZ2, KZ3, 21 cm larger.
In 1929 and 1931 the KZ4 and KZ5 were introduced.
The KZ11, was a taxis G7 company, a special series of 2400 vehicles with new adaptations.
Types
- KZ
- KZ1
- KZ2
- KZ3
- KZ4
- KZ5
Specification
- Speed = 75 km/h
gollark: I don't know.
gollark: https://esolangs.org/wiki/WHY
gollark: All three.
gollark: Unless you turn up the optimization setting to ~30, at which point it makes quite fast code.
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description='Compile a WHY program')parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```The compiler for the new `WHY` language. Made as a joke because someone on the esolangs server insisted that all compiled languages were fast.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.