Student Competition Center

The Student Competition Center is the official home of the student competition teams at Georgia Tech. These teams include GT Motorsports, GT Offroad, Solar Racing (formerly SolarJackets), RoboJackets, Wreck Racing, HyTech Racing, and the EcoCAR team. The building, operated by the George W. Woodruff School of Mechanical Engineering, provides teams with the necessary facilities to participate in their respective competitions. The facility is located at 575 14th Street in Atlanta, GA, adjacent to the Georgia Tech campus.

History

The original Student Competition Center was located at the center of campus in the shadow of Tech Tower, nested between the Coon, Skiles, & Weber buildings [1]. The original facility, dubbed the "Tin Building" by students and professors, was constructed in 1941 and originally stood in Savannah, GA. The facility was used to manufacture Sherman tanks during World War II. Following the war, the structure was deconstructed and moved to the Georgia Tech campus in Atlanta in 1947. It served as laboratory space and held offices for mechanical engineering faculty until the 1990s, when the building was re-purposed to house the student competition teams who had outgrown their original meeting space in the basement of the Coon building.

The facility housed build areas and offices for each team, along with an assortment of common machine tools shared by the students [1]. However, the safety of the facility began to be called into question. The building itself was also regarded by some to be an eyesore. In response to these concerns, Institute President Bud Peterson met with competition team leaders early in the spring of 2010 to announce the Institute's plan to raze the building and relocate the teams to an off-campus warehouse leased by Georgia Tech. The institute planned to construct greenspace in the area that the Tin Building occupied, however a parking lot was built instead.

Facilities officials worked closely with the teams to renovate the facility that was suited to their needs. The institute paid for all construction and moving expenses, totaling in excess of a million dollars. The new off-campus competition center opened in January 2011, with more than five times the build and office space as the Tin Building. Some teams have criticized the choice by the institute to move the teams off campus, as they have experienced difficulty in acquiring new members and transporting existing members because of the relatively remote location.

gollark: Sure? I would move it to beside <#733816666089062511> but mobile.
gollark: Heavpoot is to be declared SCP-3125-A with immediate effect.
gollark: My tape download program now supports downloading big files without splitting them, via range requests, assuming they're served from a server which supports it: https://pastebin.com/LW9RFpmY (do `web2tape https://url.whatever range`)
gollark: Here is a similar thing for JSON. Note that it delegates out to an external JSON library for string escaping.```luafunction safe_json_serialize(x, prev) local t = type(x) if t == "number" then if x ~= x or x <= -math.huge or x >= math.huge then return tostring(x) end return string.format("%.14g", x) elseif t == "string" then return json.encode(x) elseif t == "table" then prev = prev or {} local as_array = true local max = 0 for k in pairs(x) do if type(k) ~= "number" then as_array = false break end if k > max then max = k end end if as_array then for i = 1, max do if x[i] == nil then as_array = false break end end end if as_array then local res = {} for i, v in ipairs(x) do table.insert(res, safe_json_serialize(v)) end return "["..table.concat(res, ",").."]" else local res = {} for k, v in pairs(x) do table.insert(res, json.encode(tostring(k)) .. ":" .. safe_json_serialize(v)) end return "{"..table.concat(res, ",").."}" end elseif t == "boolean" then return tostring(x) elseif x == nil then return "null" else return json.encode(tostring(x)) endend```
gollark: My tape shuffler thing from a while ago got changed round a bit. Apparently there's some demand for it, so I've improved the metadata format and written some documentation for it, and made the encoder work better by using file metadata instead of filenames and running tasks in parallel so it's much faster. The slightly updated code and docs are here: https://pastebin.com/SPyr8jrh. There are also people working on alternative playback/encoding software for the format for some reason.

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.