Olympic-class container ship

The Olympic class is a series of 6 container ships built for Mediterranean Shipping Company (MSC). The ships have a maximum theoretical capacity of 19,224 TEU.[1] The ships were built by Daewoo Shipbuilding and Marine Engineering (DSME).

Class overview
Builders: Daewoo Shipbuilding and Marine Engineering
Operators: Mediterranean Shipping Company
In service: 2014-present
Planned: 6
Building: 0
Completed: 6
Active: 6
General characteristics
Type: Container ship
Tonnage: 192,237 GT
Length: 395.5 m (1,298 ft)
Beam: 59.1 m (194 ft)
Draught: 16 m (52 ft)
Propulsion: MAN 11S90ME-C10.2
Capacity: 19,244 TEU

List of ships

Ship Yard number IMO number Delivery Status ref
MSC Oscar 4277 9703291 29 Dec 2014 In service [2]
MSC Oliver 4278 9703306 30 Mar 2015 In service [3]
MSC Zoe 4279 9703318 24 Jun 2015 In service [4]
MSC Maya 4280 9708679 19 Aug 2015 In service [5]
MSC Sveva 4281 9708681 22 Oct 2015 In service [6]
MSC Clara 4282 9708693 11 Nov 2015 In service [7]
gollark: It's a good compiler!
gollark: <@!341618941317349376> Observe, a compiler which produces slow code.
gollark: Now with optimization settings!
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])```
gollark: ^

See also

References

  1. "Our Fleet of Vessels | MSC". www.msc.com. Retrieved 2020-08-08.
  2. "MSC Oscar (G117749)". DNV GL Vessel Register. Germanischer Lloyd. Retrieved 2020-08-08.
  3. "MSC Oliver (G117750)". DNV GL Vessel Register. Germanischer Lloyd. Retrieved 2020-08-08.
  4. "MSC Zoe (G117751)". DNV GL Vessel Register. Germanischer Lloyd. Retrieved 2020-08-08.
  5. "MSC Maya (G117820)". DNV GL Vessel Register. Germanischer Lloyd. Retrieved 2020-08-08.
  6. "MSC Sveva (G117821)". DNV GL Vessel Register. Germanischer Lloyd. Retrieved 2020-08-08.
  7. "MSC Clara (G117822)". DNV GL Vessel Register. Germanischer Lloyd. Retrieved 2020-08-08.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.