HNLMS Utrecht (D817)

HNLMS Utrecht (D817) (Dutch: Hr.Ms. Utrecht) was a destroyer of the Friesland class. The ship was in service with the Royal Netherlands Navy from 1957 to 1980. The destroyer was named after the Dutch province of Utrecht and was the eighteenth ship with this name. In 1980 the ship was taken out of service and sold to Peru where it was renamed Castilla. The ship's radio call sign was "PAEY".[1]

Painting of Utrecht
History
Netherlands
Name: Utrecht
Namesake: Utrecht
Builder: KM de Schelde, Vlissingen
Laid down: 15 February 1954
Launched: 2 June 1956
Commissioned: 1 October 1957
Decommissioned: 15 August 1980
Fate: Sold to the Peruvian Navy
Peru
Name: Castilla
Acquired: 1980
Decommissioned: 1990
Identification: DD71
Status: decommissioned
General characteristics
Type: Friesland-class destroyer
Displacement: 2497 standard, 3070 tons full load
Length: 116 m (381 ft)
Beam: 11.7 m (38 ft)
Draught: 5.2 m (17 ft)
Propulsion: 2 shaft geared turbines, 4 BW boilers, Super-heated steam @ 620psi, 60,000 hp
Speed: 36 kn (67 km/h; 41 mph)
Range: 4,000 nmi (7,400 km; 4,600 mi) at 18 kn (33 km/h; 21 mph)
Complement: 284
Sensors and
processing systems:
Radar LW-02, DA-01, ZW-01, M45, Sonar Type PAE 1N, Type CWE 10
Armament:

Dutch service history

HNLMS Utrecht was one of eight Friesland-class destroyers and was built at the KM de Schelde in Vlissingen. The keel laying took place on 15 February 1954 and the launching on 2 June 1956. The ship was put into service on 1 October 1957.[2]

In 1959 the ship received eight torpedo tubes so it could use the British MK 20E torpedo. After a few years these were removed however, because the Dutch navy favored American torpedoes.[3]

In 1962 during the West New Guinea dispute Utrecht and the frigate Evertsen engaged Proa’s and fast attack craft in the Battle of Arafura Sea.[3]

On 1 August 1980 the vessel was decommissioned and sold to the Peruvian Navy.[4]

Peruvian service history

The ship was put into service on 6 October 1980 where the ship was renamed Castilla and decommissioned in 1990.[2]

Notes

  1. "Utrecht (D817)". www.navyinside.nl. Retrieved 15 September 2018.
  2. "helis.com". Retrieved 17 August 2018.
  3. "Frieslandklasse onderzeebootjagers". www.marineschepen.nl. 5 August 2016. Retrieved 17 August 2018.
  4. "onzevloot.weebly.com". www.onzevloot.weebly.com. Retrieved 17 August 2018.
gollark: Yes, thanks TIOpy?
gollark: ```python#!/usr/bin/env python3import subprocess, os, os.path, sys, argparse, datetimetimestamp = datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S")print(timestamp)parser = argparse.ArgumentParser(description="do backups, probably")parser.add_argument("--encrypt", "-E", help="store backup in encrypted folder (please make sure it's unlocked)", action="store_true")parser.add_argument("--no-incremental", "-n", help="don't do incremental backup", action="store_true")parser.add_argument("--save_as", "-a", help="back up under different name")parser.add_argument("dir", help="directory to backup")args = parser.parse_args()incremental = not args.no_incrementalprint(args)srcdir = os.path.abspath(args.dir)outdir = os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])), "encrypted/backups" if args.encrypt else "backups")safepath = (args.save_as or srcdir).lstrip("/").replace("/", "-").replace("_", "-")outpath = os.path.join(outdir, f"{safepath}_{timestamp}{'_incr' if incremental else ''}.tar.zst")snapshot = os.path.join(outdir, f"{safepath}.snapshot")snapargs = ["-g", snapshot] if incremental else []print(srcdir, outdir, outpath)tarproc = subprocess.Popen(["tar", "-c", "-v", "-C", os.path.dirname(srcdir), os.path.basename(srcdir)] + snapargs, stdout=subprocess.PIPE)zstproc = subprocess.Popen(["zstd", "-10", "-T0", "-o", outpath], stdin=tarproc.stdout)def assert_proc(x): if x.wait() != 0: print(f"warning: {x.args} failed")assert_proc(tarproc)assert_proc(zstproc)```efficiency™
gollark: Wow, I really love having to use `grep` to find an option in `--help`!
gollark: Yes.
gollark: Anyway², I'll switch over my backup stuff and use the existing incremental tar thing for smallish compressible directories and rsync for large-scale apiary data.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.