Gravity-based structure

A gravity-based structure (GBS) is a support structure held in place by gravity. A common application for a GBS is an offshore oil platform. These structures are often constructed in fjords since their protected area and sufficient depth are very desirable for construction. A GBS intended for use as an offshore oil platform is constructed of steel reinforced concrete, often with tanks or cells which can be used to control the buoyancy of the finished GBS. When completed, a GBS is towed to its intended location and sunk. Prior to deployment, a study of the seabed have to be done in order to ensure it can withstand the vertical load exerted on it by that structure.[1]

A Condeep type GBS under construction in Norway

Gravity-based structures are also used for offshore wind power plants. By the end of 2010, 14 of the world's offshore wind farms were supported by gravity-based structures. The GBS are suited for water depths greater than 20 m. The deepest registered offshore wind farm with gravity-based structures is Thornton Bank 1, Belgium, with a depth up to 27.5 m.[2] As offshore wind power plants are growing in size and moving towards deeper waters, the GBS is considered competitive in comparison with other support structures.

See Also


gollark: Okay, "quite fast" may be an overstatement.
gollark: This is far more readable than foolish "shell scripts", and actually quite fast.
gollark: It's HIGHLY advanced.
gollark: If you want, I can make it compile in parallel, but I haven't done this.
gollark: ```python#!/usr/bin/env python3import os, subprocess, sysDIR = os.path.abspath(os.path.dirname(sys.argv[0]))CC = ["gcc", "-Wall"]CACHE = os.path.join(DIR, "_cache")EXT = ".c"OUT_FILE = os.path.join(DIR, "out")if not os.path.exists(CACHE): os.mkdir(CACHE)changed_any = Falseobject_files = []for thing in os.listdir(DIR): if thing.endswith(EXT): path = os.path.join(DIR, thing) name, _, _ = thing.rpartition(EXT) cache_entry = os.path.join(CACHE, f"{name}.o") try: cache_updated_at = os.stat(cache_entry).st_mtime except FileNotFoundError: cache_updated_at = 0 code_updated_at = os.stat(path).st_mtime if cache_updated_at < code_updated_at: print(thing) subprocess.run(CC + ["-c", "-o", cache_entry, path]) changed_any = True object_files.append(cache_entry)if changed_any or not os.path.exists(OUT_FILE): subprocess.run(CC + ["-o", OUT_FILE] + object_files)else: print("no changes")```

References

  1. Dean, E.T.R. (2010). Offshore Geotechnical Engineering - Principles and Practice. Thomas Telford, Reston, VA, U.S.A., 520 p.
  2. "LORC Knowledge. "Datasheet for site: Thornton Bank 1 offshore wind farm", 2011".
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.