<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://stationeers-wiki.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tofof</id>
	<title>Stationeers Community Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://stationeers-wiki.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tofof"/>
	<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/Special:Contributions/Tofof"/>
	<updated>2026-04-05T00:20:31Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=4224</id>
		<title>Solar Logic Circuits Guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=4224"/>
		<updated>2018-04-24T20:22:16Z</updated>

		<summary type="html">&lt;p&gt;Tofof: /* Accurate Solar Setup */ adjust parentheses in formula&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
&lt;br /&gt;
Due to the frequency of game updates, all solutions are subject to change and may or may not be functional.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Accurate Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Authors:&#039;&#039;&#039; Wooodiii, Corvus_bkgk, Enfantcool, Baksch&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Accurate (average error 1.3°), Auto-reset (variant), Power conserving (variant)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 10-12&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Math Formula:&#039;&#039;&#039; &amp;lt;code&amp;gt;f(x) = min((x-min(x,15))/1.5, 100)&amp;lt;/code&amp;gt; where &#039;&#039;&#039;x&#039;&#039;&#039; is the solar angle.&lt;br /&gt;
&lt;br /&gt;
This setup is accurate, giving 495-500W throughout the day, with lower output only when the sun is lower than the panels can physically aim at. &lt;br /&gt;
&lt;br /&gt;
This setup adjusts for the fact that solar panels rotate through only 150 degrees. Instead of converting using 180/100, this setup converts by doing 150/100. It then clips the value at the edges, where the prior calculation would give elevations that are negative or greater than 100 (representing the fact that we would prefer the panel to track past 0 or 100, aiming all the way down to the horizon instead of stopping 15° short). The listed average error is nonzero only because of this completely unavoidable portion; the error is 0 throughout the 15°-165° portion of the day.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[ Sensors| Construction Kit (Sensors)]] (&amp;quot;Daylight Sensor&amp;quot;)&lt;br /&gt;
* 2 [[Kit (Logic I/O)]] (1 &amp;quot;Logic Reader&amp;quot;, 1 &amp;quot;Batch Writer&amp;quot;)&lt;br /&gt;
* 3 [[Kit (Logic Memory)]]&lt;br /&gt;
* 4 [[Kit (Logic Processor)]] (2 &amp;quot;Math Unit&amp;quot;, 2 &amp;quot;Min/Max Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* The [[Sensors#Daylight_Sensor|Daylight Sensor]] should face the sunrise.&lt;br /&gt;
* Solar panels should be rotated such that 0% vertical faces the sunrise.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (A) || Daylight sensor, Solar angle || Sun&#039;s angle above the horizon&lt;br /&gt;
|-&lt;br /&gt;
| Memory (15) || 15 || True angle of solar panels at 0 elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (1.5) || 1.5 || 150/100, the conversion constant from solar angle (range:15-165, i.e. 150) to panel elevation (range:0-100)&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (B) || min(A,15) || Adjustment amount: 15, unless that would take A-B negative, in which case only enough to reach 0  (low edge case). Equivalent to min(A-B,0) but doesn&#039;t require storing 0. &lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (C) || A-B || Adjusted solar angle&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (D) || C/1.5 || Conversion from solar angle to panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (100) || 100 || Maximum possible panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (E) || min(D,100) || Cap elevation to 100 for solar angles past 165° (high edge case). Equivalent to doing min(A-B,165) before step D, but 100 is easier to set in memory than 165.&lt;br /&gt;
|-&lt;br /&gt;
| Batch Writer || E -&amp;gt; Solar panels, Vertical angle || Send elevation to solar panels&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:Accurate Solar Control.png]]&lt;br /&gt;
&lt;br /&gt;
=== Auto-Reset Variant ===&lt;br /&gt;
For panels that automatically reset their facing upon sunset, use two more components, and adjust the final min/max unit:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || 1 while daytime, 0 while nighttime&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (F)  || 100*L || Maximum panel elevation, now 100 during day and 0 at night&lt;br /&gt;
|-&lt;br /&gt;
| (from above) Min/Max Unit (E) || min(D,&#039;&#039;&#039;F&#039;&#039;&#039;) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Power-Conserving Variant ===&lt;br /&gt;
To conserve power, it&#039;s possible to avoid running the entire circuit at night. A transformer can be controlled to power the main logic network above. In this way, only the two new components need to remain powered at all times.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || As in the auto-reset variant above&lt;br /&gt;
|-&lt;br /&gt;
| Logic Writer || L -&amp;gt; Transformer, On  || Transformer powers main logic network&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Easy/Compact Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Author:&#039;&#039;&#039; Evie&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Stationeers Version:&#039;&#039;&#039; 0.1.1068.5451&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Simple, Inaccurate (Average error: 7.5°)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 5&lt;br /&gt;
&lt;br /&gt;
This imperfect setup is a common starting point. It starts off at 375w of power in the morning, builds up to 500w at zenith (noon) then back to 375. This is due to the fact that solars rotate through only 150 degrees of elevation and that this setup&#039;s math is correct only if they rotated through all 180 degrees of solar angle.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]]&lt;br /&gt;
* 2 [[Kit (Logic I/O)]]&lt;br /&gt;
* 1 [[Kit (Logic Memory)]]&lt;br /&gt;
* 1 [[Kit (Logic Processor)]] (&amp;quot;Math Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
[[File:Evie&#039;s Solar Circuit Setup.jpg|none|Solar Setup Diagram]]&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* The [[Daylight Sensor]] MUST be facing West (sunrise), but its rotation doesn&#039;t matter.&lt;br /&gt;
* Solar panels should be rotated such as that 0% VERTICAL rotation faces west/sunrise, and 100% VERTICAL faces east/sunset. &lt;br /&gt;
* The [[Area Power Control]] is necessary for the circuit to stay powered during the night. It also hides all the modules from the rest of your system.&lt;br /&gt;
* Importantly, the solar input power doesn&#039;t directly connect to any of the logic writers. This not only ensures your system doesn&#039;t lose power but also prevents short-circuiting that would burn cables.&lt;br /&gt;
* Using 1.7 instead of 1.8 reduces the average error of this design to 6.5° and increases overall power generation, particularly in the afternoon.&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=4223</id>
		<title>Solar Logic Circuits Guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=4223"/>
		<updated>2018-04-24T20:15:35Z</updated>

		<summary type="html">&lt;p&gt;Tofof: /* Accurate Solar Setup */ math formula on own line&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
&lt;br /&gt;
Due to the frequency of game updates, all solutions are subject to change and may or may not be functional.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Accurate Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Authors:&#039;&#039;&#039; Wooodiii, Corvus_bkgk, Enfantcool, Baksch&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Accurate (average error 1.3°), Auto-reset (variant), Power conserving (variant)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 10-12&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Math Formula:&#039;&#039;&#039; &amp;lt;code&amp;gt;f(x) = min( ( ( x - min(x, 15) ) / 1.5), 100)&amp;lt;/code&amp;gt; where &#039;&#039;&#039;x&#039;&#039;&#039; is the solar angle.&lt;br /&gt;
&lt;br /&gt;
This setup is accurate, giving 495-500W throughout the day, with lower output only when the sun is lower than the panels can physically aim at. &lt;br /&gt;
&lt;br /&gt;
This setup adjusts for the fact that solar panels rotate through only 150 degrees. Instead of converting using 180/100, this setup converts by doing 150/100. It then clips the value at the edges, where the prior calculation would give elevations that are negative or greater than 100 (representing the fact that we would prefer the panel to track past 0 or 100, aiming all the way down to the horizon instead of stopping 15° short). The listed average error is nonzero only because of this completely unavoidable portion; the error is 0 throughout the 15°-165° portion of the day.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[ Sensors| Construction Kit (Sensors)]] (&amp;quot;Daylight Sensor&amp;quot;)&lt;br /&gt;
* 2 [[Kit (Logic I/O)]] (1 &amp;quot;Logic Reader&amp;quot;, 1 &amp;quot;Batch Writer&amp;quot;)&lt;br /&gt;
* 3 [[Kit (Logic Memory)]]&lt;br /&gt;
* 4 [[Kit (Logic Processor)]] (2 &amp;quot;Math Unit&amp;quot;, 2 &amp;quot;Min/Max Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* The [[Sensors#Daylight_Sensor|Daylight Sensor]] should face the sunrise.&lt;br /&gt;
* Solar panels should be rotated such that 0% vertical faces the sunrise.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (A) || Daylight sensor, Solar angle || Sun&#039;s angle above the horizon&lt;br /&gt;
|-&lt;br /&gt;
| Memory (15) || 15 || True angle of solar panels at 0 elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (1.5) || 1.5 || 150/100, the conversion constant from solar angle (range:15-165, i.e. 150) to panel elevation (range:0-100)&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (B) || min(A,15) || Adjustment amount: 15, unless that would take A-B negative, in which case only enough to reach 0  (low edge case). Equivalent to min(A-B,0) but doesn&#039;t require storing 0. &lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (C) || A-B || Adjusted solar angle&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (D) || C/1.5 || Conversion from solar angle to panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (100) || 100 || Maximum possible panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (E) || min(D,100) || Cap elevation to 100 for solar angles past 165° (high edge case). Equivalent to doing min(A-B,165) before step D, but 100 is easier to set in memory than 165.&lt;br /&gt;
|-&lt;br /&gt;
| Batch Writer || E -&amp;gt; Solar panels, Vertical angle || Send elevation to solar panels&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:Accurate Solar Control.png]]&lt;br /&gt;
&lt;br /&gt;
=== Auto-Reset Variant ===&lt;br /&gt;
For panels that automatically reset their facing upon sunset, use two more components, and adjust the final min/max unit:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || 1 while daytime, 0 while nighttime&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (F)  || 100*L || Maximum panel elevation, now 100 during day and 0 at night&lt;br /&gt;
|-&lt;br /&gt;
| (from above) Min/Max Unit (E) || min(D,&#039;&#039;&#039;F&#039;&#039;&#039;) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Power-Conserving Variant ===&lt;br /&gt;
To conserve power, it&#039;s possible to avoid running the entire circuit at night. A transformer can be controlled to power the main logic network above. In this way, only the two new components need to remain powered at all times.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || As in the auto-reset variant above&lt;br /&gt;
|-&lt;br /&gt;
| Logic Writer || L -&amp;gt; Transformer, On  || Transformer powers main logic network&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Easy/Compact Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Author:&#039;&#039;&#039; Evie&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Stationeers Version:&#039;&#039;&#039; 0.1.1068.5451&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Simple, Inaccurate (Average error: 7.5°)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 5&lt;br /&gt;
&lt;br /&gt;
This imperfect setup is a common starting point. It starts off at 375w of power in the morning, builds up to 500w at zenith (noon) then back to 375. This is due to the fact that solars rotate through only 150 degrees of elevation and that this setup&#039;s math is correct only if they rotated through all 180 degrees of solar angle.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]]&lt;br /&gt;
* 2 [[Kit (Logic I/O)]]&lt;br /&gt;
* 1 [[Kit (Logic Memory)]]&lt;br /&gt;
* 1 [[Kit (Logic Processor)]] (&amp;quot;Math Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
[[File:Evie&#039;s Solar Circuit Setup.jpg|none|Solar Setup Diagram]]&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* The [[Daylight Sensor]] MUST be facing West (sunrise), but its rotation doesn&#039;t matter.&lt;br /&gt;
* Solar panels should be rotated such as that 0% VERTICAL rotation faces west/sunrise, and 100% VERTICAL faces east/sunset. &lt;br /&gt;
* The [[Area Power Control]] is necessary for the circuit to stay powered during the night. It also hides all the modules from the rest of your system.&lt;br /&gt;
* Importantly, the solar input power doesn&#039;t directly connect to any of the logic writers. This not only ensures your system doesn&#039;t lose power but also prevents short-circuiting that would burn cables.&lt;br /&gt;
* Using 1.7 instead of 1.8 reduces the average error of this design to 6.5° and increases overall power generation, particularly in the afternoon.&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Gas_Canister&amp;diff=2454</id>
		<title>Gas Canister</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Gas_Canister&amp;diff=2454"/>
		<updated>2018-01-07T20:39:03Z</updated>

		<summary type="html">&lt;p&gt;Tofof: volume infobox and correction (volume is 64L not 52)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Items]]&lt;br /&gt;
[[Category:Atmospherics]]&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Gas Canister&lt;br /&gt;
 | image       = [[File:ItemGasCanisterEmpty.png]]&lt;br /&gt;
 | maxpressure = 10132.5 kPa&lt;br /&gt;
 | volume      = 64 L&lt;br /&gt;
 | createdwith = [[Hydraulic Pipe Bender]], [[Fabricator]]&lt;br /&gt;
 | cost        = 5g [[Iron]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Description == &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
[[Gas Canister]] is used to store gasses. The gasses can then be output at a rate of 101.325 kPa per tick. Overpressurizing the canister will cause it to explode, with a force of 350(?units) in a radius of 5(?units). The maximum pressure for a canister is 10.132 MPa, or 10 atmospheres.&lt;br /&gt;
&lt;br /&gt;
==Usage==&lt;br /&gt;
To fill the canister, place it into a [[Gas Tank Storage]] unit that&#039;s connected to a pipe network carrying gas. You can easily build an airtight room, with an active vent, a pressure gauge and the Gas Tank storage all connected together to fill the tank. It can also be refiiled by inserting it into the striped area above of the [[Portable Tank]].&lt;br /&gt;
&lt;br /&gt;
==Used In==&lt;br /&gt;
* EVA Suit for O2 and Waste.&lt;br /&gt;
* EVA Backpack for Propulsion (Nitrogen)&lt;br /&gt;
* [[Welder]] fuel&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
* It has a capacity of 64 Liters&lt;br /&gt;
&lt;br /&gt;
== Variants ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:ItemGasCanisterCarbonDioxide.png|[[Carbon Dioxide|Carbon Dioxide (CO2)]]&lt;br /&gt;
File:ItemGasCanisterChlorine.png|[[Chlorine|Chlorine (Cl)]]&lt;br /&gt;
File:ItemGasCanisterEmpty.png|Empty&lt;br /&gt;
File:ItemGasCanisterFuel.png|[[Fuel]]&lt;br /&gt;
File:ItemGasCanisterHydrogen.png|[[Hydrogen|Hydrogen (H)]]&lt;br /&gt;
File:ItemGasCanisterNitrogen.png|[[Nitrogen|Nitrogen (N2)]]&lt;br /&gt;
File:ItemGasCanisterOxygen.png|[[Oxygen|Oxygen (O2)]]&lt;br /&gt;
File:ItemGasCanisterPollutants.png|[[Pollutants]]&lt;br /&gt;
File:ItemGasCanisterVolatiles.png|[[Volatiles]]&lt;br /&gt;
File:ItemGasCanisterWater.png|[[Water|Water (H2O)]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Tank&amp;diff=2453</id>
		<title>Tank</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Tank&amp;diff=2453"/>
		<updated>2018-01-07T20:33:03Z</updated>

		<summary type="html">&lt;p&gt;Tofof: capacity is measured in liters not kpa&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Items]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Kit Tank (Small Tank)&lt;br /&gt;
 | image       = [[File:]]&lt;br /&gt;
 | maxpressure =  &amp;gt;30,000 kPa?&lt;br /&gt;
 | volume      = 6000 L&lt;br /&gt;
 | createdwith = [[Hydraulic Pipe Bender]], [[Fabricator]]&lt;br /&gt;
 | cost        = 5g [[copper]] + 20g [[steel]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Description == &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
[[Tank]] is used to store gasses under high pressure. At 6000L it is currently the largest capacity container for gasses. Combined with its high bursting pressure (&amp;gt;30 atmospheres) it can store upwards of 72000 mols at room temperature (20 °C).&lt;br /&gt;
&lt;br /&gt;
==Usage==&lt;br /&gt;
To fill the canister, place it into a [[Gas Tank Storage]] unit that&#039;s connected to a pipe network carrying gas. You can easily build an airtight room, with an active vent, a pressure gauge and the Gas Tank storage all connected together to fill the tank. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Portable_Air_Scrubber&amp;diff=2450</id>
		<title>Portable Air Scrubber</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Portable_Air_Scrubber&amp;diff=2450"/>
		<updated>2018-01-07T20:17:06Z</updated>

		<summary type="html">&lt;p&gt;Tofof: /* Notes */ holds same volume as the much-larger-appearing portable tank&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Items]]&lt;br /&gt;
[[Category:Atmospherics]]&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Portable Air Scrubber&lt;br /&gt;
 | image       = [[File:DynamicScrubber.png]]&lt;br /&gt;
 | maxpressure = 8106 kPa&lt;br /&gt;
 | volume      = 790 L&lt;br /&gt;
 | createdwith = [[Hydraulic Pipe Bender]]&lt;br /&gt;
 | cost        = 10g [[Iron]], 2g [[Gold]], 5g [[Copper]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Used as a portable Filtration Unit. The filters placed in the back will determine what is being absorbed from the air. The device will flash an error after it reaches an internal pressure of 8106 kPa and will require to be emptied. To do so it needs to be placed over a [[Tank Connector]] and lock into position by using a [[Wrench]]. Then it will start passing all the gasses inside into the network directly.&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
* Internal tank volume is 790 Liters, the same as the large [[Portable Tank]].&lt;br /&gt;
* The power usage is 37.5W/s meaning a Small Battery will last 16 minutes.&lt;br /&gt;
* It will add heat by a rate of 12.5J/s while powered.&lt;br /&gt;
* You can insert two filters of the same type to double the speed.&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Portable_Air_Conditioner&amp;diff=2449</id>
		<title>Portable Air Conditioner</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Portable_Air_Conditioner&amp;diff=2449"/>
		<updated>2018-01-07T20:16:35Z</updated>

		<summary type="html">&lt;p&gt;Tofof: /* Notes */ internal tank actually stores same amount as the far-larger-appearing portable tank&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Items]]&lt;br /&gt;
[[Category:Atmospherics]]&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Portable Air Conditioner&lt;br /&gt;
 | image       = [[File:DynamicAirConditioner.png]]&lt;br /&gt;
 | maxpressure = 8106 kPa&lt;br /&gt;
 | volume      = 790 L&lt;br /&gt;
 | createdwith = [[Hydraulic Pipe Bender]]&lt;br /&gt;
 | cost        = 10g [[Iron]], 2g [[Gold]], 5g [[Copper]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
&lt;br /&gt;
Used to lower and raise the temperature by storing temperature inside the unit. It features two modes: Cold and Hot. It can be attached to a [[Tank Connector]] with a [[Wrench]] which will use the pipe network to store temperature rather than internal.&lt;br /&gt;
&lt;br /&gt;
*Note that it will flash an error if conditions are not met.&lt;br /&gt;
** Hot mode will flash an error if the temperature is over +30C (303.15K)&lt;br /&gt;
** Cold mode will flash an error if the temperature is less than -10C (263.15K)&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
* Internal tank volume is 790 Liters, the same as the larger-appearing [[Portable Tank]].&lt;br /&gt;
* The power usage is 37.5W/s meaning a Small Battery will last 16 minutes.&lt;br /&gt;
* It removes/adds heat by 500J/s&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Portable_Gas_Tank&amp;diff=2448</id>
		<title>Portable Gas Tank</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Portable_Gas_Tank&amp;diff=2448"/>
		<updated>2018-01-07T20:15:26Z</updated>

		<summary type="html">&lt;p&gt;Tofof: volume infobox, kill comma splices, remove unused pressure and keep it only in note for now&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Atmospherics]]&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Portable Tank&lt;br /&gt;
 | image       = [[File:DynamicGasCanisterEmpty.png]]&lt;br /&gt;
 | volume      = 790 L&lt;br /&gt;
 | createdwith = [[Hydraulic Pipe Bender]]&lt;br /&gt;
 | cost        = 20g [[Iron]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
The Portable Tank is used to store gasses. It has a higher volume than the [[Gas Canister]]. The front of the tank features a striped area where the Gas Canister can be inserted for refilling.&lt;br /&gt;
==Notes==&lt;br /&gt;
* The &amp;quot;standard pressure&amp;quot; is defined as 8106 kPa and the maximum 10132.5 kPa inside the game data, but the values as of now are not enforced/used.&lt;br /&gt;
* The gasses can be output at a rate of 202.65 kPa per tick (0.5 seconds)&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Pipe&amp;diff=2447</id>
		<title>Pipe</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Pipe&amp;diff=2447"/>
		<updated>2018-01-07T20:13:15Z</updated>

		<summary type="html">&lt;p&gt;Tofof: volume infobox&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Atmospherics]]&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Pipe&lt;br /&gt;
 | image       = [[File:ItemPipe.png]]&lt;br /&gt;
 | maxpressure = 60MPa&lt;br /&gt;
 | volume      = 100 L&lt;br /&gt;
 | createdwith = [[Hydraulic Pipe Bender]]&lt;br /&gt;
 | cost        = 0.5g [[Iron]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Used to move and transfer gases.&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
* Each pipe segment has a volume of 100 Liters.&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Portable_Air_Conditioner&amp;diff=2446</id>
		<title>Portable Air Conditioner</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Portable_Air_Conditioner&amp;diff=2446"/>
		<updated>2018-01-07T20:12:56Z</updated>

		<summary type="html">&lt;p&gt;Tofof: volume infobox&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Items]]&lt;br /&gt;
[[Category:Atmospherics]]&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Portable Air Conditioner&lt;br /&gt;
 | image       = [[File:DynamicAirConditioner.png]]&lt;br /&gt;
 | maxpressure = 8106 kPa&lt;br /&gt;
 | volume      = 790 L&lt;br /&gt;
 | createdwith = [[Hydraulic Pipe Bender]]&lt;br /&gt;
 | cost        = 10g [[Iron]], 2g [[Gold]], 5g [[Copper]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
&lt;br /&gt;
Used to lower and raise the temperature by storing temperature inside the unit. It features two modes: Cold and Hot. It can be attached to a [[Tank Connector]] with a [[Wrench]] which will use the pipe network to store temperature rather than internal.&lt;br /&gt;
&lt;br /&gt;
*Note that it will flash an error if conditions are not met.&lt;br /&gt;
** Hot mode will flash an error if the temperature is over +30C (303.15K)&lt;br /&gt;
** Cold mode will flash an error if the temperature is less than -10C (263.15K)&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
* Internal tank volume is 790 Liters&lt;br /&gt;
* The power usage is 37.5W/s meaning a Small Battery will last 16 minutes.&lt;br /&gt;
* It removes/adds heat by 500J/s&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Portable_Air_Scrubber&amp;diff=2445</id>
		<title>Portable Air Scrubber</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Portable_Air_Scrubber&amp;diff=2445"/>
		<updated>2018-01-07T20:12:18Z</updated>

		<summary type="html">&lt;p&gt;Tofof: volume infobox&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Items]]&lt;br /&gt;
[[Category:Atmospherics]]&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Portable Air Scrubber&lt;br /&gt;
 | image       = [[File:DynamicScrubber.png]]&lt;br /&gt;
 | maxpressure = 8106 kPa&lt;br /&gt;
 | volume      = 790 L&lt;br /&gt;
 | createdwith = [[Hydraulic Pipe Bender]]&lt;br /&gt;
 | cost        = 10g [[Iron]], 2g [[Gold]], 5g [[Copper]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Used as a portable Filtration Unit. The filters placed in the back will determine what is being absorbed from the air. The device will flash an error after it reaches an internal pressure of 8106 kPa and will require to be emptied. To do so it needs to be placed over a [[Tank Connector]] and lock into position by using a [[Wrench]]. Then it will start passing all the gasses inside into the network directly.&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
* Internal tank volume is 790 Liters&lt;br /&gt;
* The power usage is 37.5W/s meaning a Small Battery will last 16 minutes.&lt;br /&gt;
* It will add heat by a rate of 12.5J/s while powered.&lt;br /&gt;
* You can insert two filters of the same type to double the speed.&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Template:Itembox&amp;diff=2444</id>
		<title>Template:Itembox</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Template:Itembox&amp;diff=2444"/>
		<updated>2018-01-07T19:46:13Z</updated>

		<summary type="html">&lt;p&gt;Tofof: adding volume to useful gas container stats like pressure and temperature&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox&lt;br /&gt;
 | title = {{{name}}}&lt;br /&gt;
 | image =  {{{image|}}}&lt;br /&gt;
 | label1 = Stacks&lt;br /&gt;
 | data1 = {{{stacks|No}}}&lt;br /&gt;
 | label2 = Constructing Options&lt;br /&gt;
 | data2 = {{{constructs|}}}&lt;br /&gt;
 | header3 = {{ #if: {{{createdwith|}}} | Recipe}}&lt;br /&gt;
 | label4 = Created With&lt;br /&gt;
 | data4 = {{{createdwith|}}}&lt;br /&gt;
 | label5 = Cost&lt;br /&gt;
 | data5 = {{{cost|}}}&lt;br /&gt;
 | label6 = Used With&lt;br /&gt;
 | data6 = {{{usedwith|}}}&lt;br /&gt;
 | label7 = Max Pressure&lt;br /&gt;
 | data7 = {{{maxpressure|}}}&lt;br /&gt;
 | label8 = Max Temperature&lt;br /&gt;
 | data8 = {{{maxtemp|}}}&lt;br /&gt;
 | label9 = Logic Parameters&lt;br /&gt;
 | data9 = {{{logic|}}}&lt;br /&gt;
 | label10 = Volume&lt;br /&gt;
 | data10 = {{{volume|}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&lt;br /&gt;
[[Category:Items]]&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Tank&amp;diff=2443</id>
		<title>Tank</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Tank&amp;diff=2443"/>
		<updated>2018-01-07T19:44:36Z</updated>

		<summary type="html">&lt;p&gt;Tofof: volume is 6000 liters&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Items]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Kit Tank (Small Tank)&lt;br /&gt;
 | image       = [[File:]]&lt;br /&gt;
 | maxpressure =  &amp;gt;30,000 kPa?&lt;br /&gt;
 | volume      = 6000 L&lt;br /&gt;
 | createdwith = [[Hydraulic Pipe Bender]], [[Fabricator]]&lt;br /&gt;
 | cost        = 5g [[copper]] + 20g [[steel]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Description == &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
[[Tank]] is used to store gasses under high pressure, at &amp;gt;30 Atmospheres its currently the largest capacity container for gases. &lt;br /&gt;
&lt;br /&gt;
==Usage==&lt;br /&gt;
To fill the canister, place it into a [[Gas Tank Storage]] unit that&#039;s connected to a pipe network carrying gas. You can easily build an airtight room, with an active vent, a pressure gauge and the Gas Tank storage all connected together to fill the tank. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2352</id>
		<title>Solar Logic Circuits Guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2352"/>
		<updated>2018-01-04T00:50:36Z</updated>

		<summary type="html">&lt;p&gt;Tofof: /* Design */ daylight sensor redlink fix&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
&lt;br /&gt;
Due to the frequency of game updates, all solutions are subject to change and may or may not be functional.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Accurate Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Authors:&#039;&#039;&#039; Wooodiii, Corvus_bkgk, Enfantcool, Baksch&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Accurate (average error 1.3°), Auto-reset (variant), Power conserving (variant)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 10-12&lt;br /&gt;
&lt;br /&gt;
This setup is accurate, giving 495-500W throughout the day, with lower output only when the sun is lower than the panels can physically aim at. &lt;br /&gt;
&lt;br /&gt;
This setup adjusts for the fact that solar panels rotate through only 150 degrees. Instead of converting using 180/100, this setup converts by doing 150/100. It then clips the value at the edges, where the prior calculation would give elevations that are negative or greater than 100 (representing the fact that we would prefer the panel to track past 0 or 100, aiming all the way down to the horizon instead of stopping 15° short). The listed average error is nonzero only because of this completely unavoidable portion; the error is 0 throughout the 15°-165° portion of the day.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[ Sensors| Construction Kit (Sensors)]] (&amp;quot;Daylight Sensor&amp;quot;)&lt;br /&gt;
* 2 [[Kit (Logic I/O)]] (1 &amp;quot;Logic Reader&amp;quot;, 1 &amp;quot;Batch Writer&amp;quot;)&lt;br /&gt;
* 3 [[Kit (Logic Memory)]]&lt;br /&gt;
* 4 [[Kit (Logic Processor)]] (2 &amp;quot;Math Unit&amp;quot;, 2 &amp;quot;Min/Max Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* The [[Sensors#Daylight_Sensor|Daylight Sensor]] should face the sunrise.&lt;br /&gt;
* Solar panels should be rotated such that 0% vertical faces the sunrise.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (A) || Daylight sensor, Solar angle || Sun&#039;s angle above the horizon&lt;br /&gt;
|-&lt;br /&gt;
| Memory (15) || 15 || True angle of solar panels at 0 elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (1.5) || 1.5 || 150/100, the conversion constant from solar angle (range:15-165, i.e. 150) to panel elevation (range:0-100)&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (B) || min(A,15) || Adjustment amount: 15, unless that would take A-B negative, in which case only enough to reach 0  (low edge case). Equivalent to min(A-B,0) but doesn&#039;t require storing 0. &lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (C) || A-B || Adjusted solar angle&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (D) || C/1.5 || Conversion from solar angle to panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (100) || 100 || Maximum possible panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (E) || min(D,100) || Cap elevation to 100 for solar angles past 165° (high edge case). Equivalent to doing min(A-B,165) before step D, but 100 is easier to set in memory than 165.&lt;br /&gt;
|-&lt;br /&gt;
| Batch Writer || E -&amp;gt; Solar panels, Vertical angle || Send elevation to solar panels&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:Accurate Solar Control.png]]&lt;br /&gt;
&lt;br /&gt;
=== Auto-Reset Variant ===&lt;br /&gt;
For panels that automatically reset their facing upon sunset, use two more components, and adjust the final min/max unit:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || 1 while daytime, 0 while nighttime&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (F)  || 100*L || Maximum panel elevation, now 100 during day and 0 at night&lt;br /&gt;
|-&lt;br /&gt;
| (from above) Min/Max Unit (E) || min(D,&#039;&#039;&#039;F&#039;&#039;&#039;) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Power-Conserving Variant ===&lt;br /&gt;
To conserve power, it&#039;s possible to avoid running the entire circuit at night. A transformer can be controlled to power the main logic network above. In this way, only the two new components need to remain powered at all times.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || As in the auto-reset variant above&lt;br /&gt;
|-&lt;br /&gt;
| Logic Writer || L -&amp;gt; Transformer, On  || Transformer powers main logic network&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Easy/Compact Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Author:&#039;&#039;&#039; Evie&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Stationeers Version:&#039;&#039;&#039; 0.1.1068.5451&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Simple, Inaccurate (Average error: 7.5°)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 5&lt;br /&gt;
&lt;br /&gt;
This imperfect setup is a common starting point. It starts off at 375w of power in the morning, builds up to 500w at zenith (noon) then back to 375. This is due to the fact that solars rotate through only 150 degrees of elevation and that this setup&#039;s math is correct only if they rotated through all 180 degrees of solar angle.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]]&lt;br /&gt;
* 2 [[Kit (Logic I/O)]]&lt;br /&gt;
* 1 [[Kit (Logic Memory)]]&lt;br /&gt;
* 1 [[Kit (Logic Processor)]] (&amp;quot;Math Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
[[File:Evie&#039;s Solar Circuit Setup.jpg|none|Solar Setup Diagram]]&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* The [[Daylight Sensor]] MUST be facing West (sunrise), but its rotation doesn&#039;t matter.&lt;br /&gt;
* Solar panels should be rotated such as that 0% VERTICAL rotation faces west/sunrise, and 100% VERTICAL faces east/sunset. &lt;br /&gt;
* The [[Area Power Control]] is necessary for the circuit to stay powered during the night. It also hides all the modules from the rest of your system.&lt;br /&gt;
* Importantly, the solar input power doesn&#039;t directly connect to any of the logic writers. This not only ensures your system doesn&#039;t lose power but also prevents short-circuiting that would burn cables.&lt;br /&gt;
* Using 1.7 instead of 1.8 reduces the average error of this design to 6.5° and increases overall power generation, particularly in the afternoon.&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2351</id>
		<title>Solar Logic Circuits Guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2351"/>
		<updated>2018-01-04T00:49:32Z</updated>

		<summary type="html">&lt;p&gt;Tofof: /* Design */ sensors redlink fix&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
&lt;br /&gt;
Due to the frequency of game updates, all solutions are subject to change and may or may not be functional.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Accurate Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Authors:&#039;&#039;&#039; Wooodiii, Corvus_bkgk, Enfantcool, Baksch&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Accurate (average error 1.3°), Auto-reset (variant), Power conserving (variant)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 10-12&lt;br /&gt;
&lt;br /&gt;
This setup is accurate, giving 495-500W throughout the day, with lower output only when the sun is lower than the panels can physically aim at. &lt;br /&gt;
&lt;br /&gt;
This setup adjusts for the fact that solar panels rotate through only 150 degrees. Instead of converting using 180/100, this setup converts by doing 150/100. It then clips the value at the edges, where the prior calculation would give elevations that are negative or greater than 100 (representing the fact that we would prefer the panel to track past 0 or 100, aiming all the way down to the horizon instead of stopping 15° short). The listed average error is nonzero only because of this completely unavoidable portion; the error is 0 throughout the 15°-165° portion of the day.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[ Sensors| Construction Kit (Sensors)]] (&amp;quot;Daylight Sensor&amp;quot;)&lt;br /&gt;
* 2 [[Kit (Logic I/O)]] (1 &amp;quot;Logic Reader&amp;quot;, 1 &amp;quot;Batch Writer&amp;quot;)&lt;br /&gt;
* 3 [[Kit (Logic Memory)]]&lt;br /&gt;
* 4 [[Kit (Logic Processor)]] (2 &amp;quot;Math Unit&amp;quot;, 2 &amp;quot;Min/Max Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* The [[Daylight Sensor]] should face the sunrise.&lt;br /&gt;
* Solar panels should be rotated such that 0% vertical faces the sunrise.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (A) || Daylight sensor, Solar angle || Sun&#039;s angle above the horizon&lt;br /&gt;
|-&lt;br /&gt;
| Memory (15) || 15 || True angle of solar panels at 0 elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (1.5) || 1.5 || 150/100, the conversion constant from solar angle (range:15-165, i.e. 150) to panel elevation (range:0-100)&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (B) || min(A,15) || Adjustment amount: 15, unless that would take A-B negative, in which case only enough to reach 0  (low edge case). Equivalent to min(A-B,0) but doesn&#039;t require storing 0. &lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (C) || A-B || Adjusted solar angle&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (D) || C/1.5 || Conversion from solar angle to panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (100) || 100 || Maximum possible panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (E) || min(D,100) || Cap elevation to 100 for solar angles past 165° (high edge case). Equivalent to doing min(A-B,165) before step D, but 100 is easier to set in memory than 165.&lt;br /&gt;
|-&lt;br /&gt;
| Batch Writer || E -&amp;gt; Solar panels, Vertical angle || Send elevation to solar panels&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:Accurate Solar Control.png]]&lt;br /&gt;
&lt;br /&gt;
=== Auto-Reset Variant ===&lt;br /&gt;
For panels that automatically reset their facing upon sunset, use two more components, and adjust the final min/max unit:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || 1 while daytime, 0 while nighttime&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (F)  || 100*L || Maximum panel elevation, now 100 during day and 0 at night&lt;br /&gt;
|-&lt;br /&gt;
| (from above) Min/Max Unit (E) || min(D,&#039;&#039;&#039;F&#039;&#039;&#039;) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Power-Conserving Variant ===&lt;br /&gt;
To conserve power, it&#039;s possible to avoid running the entire circuit at night. A transformer can be controlled to power the main logic network above. In this way, only the two new components need to remain powered at all times.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || As in the auto-reset variant above&lt;br /&gt;
|-&lt;br /&gt;
| Logic Writer || L -&amp;gt; Transformer, On  || Transformer powers main logic network&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Easy/Compact Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Author:&#039;&#039;&#039; Evie&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Stationeers Version:&#039;&#039;&#039; 0.1.1068.5451&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Simple, Inaccurate (Average error: 7.5°)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 5&lt;br /&gt;
&lt;br /&gt;
This imperfect setup is a common starting point. It starts off at 375w of power in the morning, builds up to 500w at zenith (noon) then back to 375. This is due to the fact that solars rotate through only 150 degrees of elevation and that this setup&#039;s math is correct only if they rotated through all 180 degrees of solar angle.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]]&lt;br /&gt;
* 2 [[Kit (Logic I/O)]]&lt;br /&gt;
* 1 [[Kit (Logic Memory)]]&lt;br /&gt;
* 1 [[Kit (Logic Processor)]] (&amp;quot;Math Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
[[File:Evie&#039;s Solar Circuit Setup.jpg|none|Solar Setup Diagram]]&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* The [[Daylight Sensor]] MUST be facing West (sunrise), but its rotation doesn&#039;t matter.&lt;br /&gt;
* Solar panels should be rotated such as that 0% VERTICAL rotation faces west/sunrise, and 100% VERTICAL faces east/sunset. &lt;br /&gt;
* The [[Area Power Control]] is necessary for the circuit to stay powered during the night. It also hides all the modules from the rest of your system.&lt;br /&gt;
* Importantly, the solar input power doesn&#039;t directly connect to any of the logic writers. This not only ensures your system doesn&#039;t lose power but also prevents short-circuiting that would burn cables.&lt;br /&gt;
* Using 1.7 instead of 1.8 reduces the average error of this design to 6.5° and increases overall power generation, particularly in the afternoon.&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Sensors&amp;diff=2350</id>
		<title>Sensors</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Sensors&amp;diff=2350"/>
		<updated>2018-01-04T00:48:19Z</updated>

		<summary type="html">&lt;p&gt;Tofof: no atmo needed for daylight sensor&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Construction Kit (Sensor)&lt;br /&gt;
 | image       =  {{{image|[[File:ItemSensorKit.png]]}}}&lt;br /&gt;
 | stacks      = 5x&lt;br /&gt;
 | constructs  = Daylight, Motion or Gas Sensor&lt;br /&gt;
 | createdwith = [[Electronics Printer]], [[Fabricator]]&lt;br /&gt;
 | cost        = 1g [[Copper]], 1g [[Gold]]&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name = Daylight Sensor&lt;br /&gt;
 | image      = {{{image|[[File:ItemKitSensor.png]]}}}&lt;br /&gt;
 | placement  = Small Grid, On Frames&lt;br /&gt;
 | powerusage = 10W&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name = Gas Sensor&lt;br /&gt;
 | image =  {{{image|[[File:ItemGasSensor.png]]}}}&lt;br /&gt;
 | placement = Small Grid, On Frames&lt;br /&gt;
 | powerusage = 10W&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name = Motion Sensor&lt;br /&gt;
 | image =  {{{image|[[File:ItemMotionSensor.png]]}}}&lt;br /&gt;
 | placement = Small Grid, On Frames&lt;br /&gt;
 | powerusage = 10W&lt;br /&gt;
}}&lt;br /&gt;
== Description == &amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
[[Sensors]] are used to detect different conditions of the world. They can be read by the [[Logic]] [[Computer]]s as well as used when correctly configured by some devices, such as a [[Console]] with a [[Circuitboard (Airlock Control)]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Daylight_sensor.jpg|In-game view of daylight sensor&lt;br /&gt;
File:Gas_sensor.jpg|In-game view of gas sensor&lt;br /&gt;
File:Motion_sensor.jpg|In-game view of motion sensor&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
=== Daylight Sensor === &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
The daylight sensor reports whether the sun hits the large grid the sensor is in, as well as the angle (relative to the angle of the sensor).&lt;br /&gt;
&lt;br /&gt;
=== Motion Sensor ===&lt;br /&gt;
The motion sensor activates when a player enters the large grid square where the sensor is, and it will deactivate when no more players are in the area.&lt;br /&gt;
=== Gas Sensor ===&lt;br /&gt;
The gas sensor will report information about the gas in the current atmosphere, such as pressure, contents and temperature.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2349</id>
		<title>Solar Logic Circuits Guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2349"/>
		<updated>2018-01-04T00:46:53Z</updated>

		<summary type="html">&lt;p&gt;Tofof: /* Design */ correct input/output var names&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
&lt;br /&gt;
Due to the frequency of game updates, all solutions are subject to change and may or may not be functional.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Accurate Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Authors:&#039;&#039;&#039; Wooodiii, Corvus_bkgk, Enfantcool, Baksch&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Accurate (average error 1.3°), Auto-reset (variant), Power conserving (variant)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 10-12&lt;br /&gt;
&lt;br /&gt;
This setup is accurate, giving 495-500W throughout the day, with lower output only when the sun is lower than the panels can physically aim at. &lt;br /&gt;
&lt;br /&gt;
This setup adjusts for the fact that solar panels rotate through only 150 degrees. Instead of converting using 180/100, this setup converts by doing 150/100. It then clips the value at the edges, where the prior calculation would give elevations that are negative or greater than 100 (representing the fact that we would prefer the panel to track past 0 or 100, aiming all the way down to the horizon instead of stopping 15° short). The listed average error is nonzero only because of this completely unavoidable portion; the error is 0 throughout the 15°-165° portion of the day.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]] (&amp;quot;Daylight Sensor&amp;quot;)&lt;br /&gt;
* 2 [[Kit (Logic I/O)]] (1 &amp;quot;Logic Reader&amp;quot;, 1 &amp;quot;Batch Writer&amp;quot;)&lt;br /&gt;
* 3 [[Kit (Logic Memory)]]&lt;br /&gt;
* 4 [[Kit (Logic Processor)]] (2 &amp;quot;Math Unit&amp;quot;, 2 &amp;quot;Min/Max Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* The [[Daylight Sensor]] should face the sunrise.&lt;br /&gt;
* Solar panels should be rotated such that 0% vertical faces the sunrise.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (A) || Daylight sensor, Solar angle || Sun&#039;s angle above the horizon&lt;br /&gt;
|-&lt;br /&gt;
| Memory (15) || 15 || True angle of solar panels at 0 elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (1.5) || 1.5 || 150/100, the conversion constant from solar angle (range:15-165, i.e. 150) to panel elevation (range:0-100)&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (B) || min(A,15) || Adjustment amount: 15, unless that would take A-B negative, in which case only enough to reach 0  (low edge case). Equivalent to min(A-B,0) but doesn&#039;t require storing 0. &lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (C) || A-B || Adjusted solar angle&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (D) || C/1.5 || Conversion from solar angle to panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (100) || 100 || Maximum possible panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (E) || min(D,100) || Cap elevation to 100 for solar angles past 165° (high edge case). Equivalent to doing min(A-B,165) before step D, but 100 is easier to set in memory than 165.&lt;br /&gt;
|-&lt;br /&gt;
| Batch Writer || E -&amp;gt; Solar panels, Vertical angle || Send elevation to solar panels&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:Accurate Solar Control.png]]&lt;br /&gt;
&lt;br /&gt;
=== Auto-Reset Variant ===&lt;br /&gt;
For panels that automatically reset their facing upon sunset, use two more components, and adjust the final min/max unit:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || 1 while daytime, 0 while nighttime&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (F)  || 100*L || Maximum panel elevation, now 100 during day and 0 at night&lt;br /&gt;
|-&lt;br /&gt;
| (from above) Min/Max Unit (E) || min(D,&#039;&#039;&#039;F&#039;&#039;&#039;) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Power-Conserving Variant ===&lt;br /&gt;
To conserve power, it&#039;s possible to avoid running the entire circuit at night. A transformer can be controlled to power the main logic network above. In this way, only the two new components need to remain powered at all times.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || As in the auto-reset variant above&lt;br /&gt;
|-&lt;br /&gt;
| Logic Writer || L -&amp;gt; Transformer, On  || Transformer powers main logic network&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Easy/Compact Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Author:&#039;&#039;&#039; Evie&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Stationeers Version:&#039;&#039;&#039; 0.1.1068.5451&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Simple, Inaccurate (Average error: 7.5°)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 5&lt;br /&gt;
&lt;br /&gt;
This imperfect setup is a common starting point. It starts off at 375w of power in the morning, builds up to 500w at zenith (noon) then back to 375. This is due to the fact that solars rotate through only 150 degrees of elevation and that this setup&#039;s math is correct only if they rotated through all 180 degrees of solar angle.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]]&lt;br /&gt;
* 2 [[Kit (Logic I/O)]]&lt;br /&gt;
* 1 [[Kit (Logic Memory)]]&lt;br /&gt;
* 1 [[Kit (Logic Processor)]] (&amp;quot;Math Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
[[File:Evie&#039;s Solar Circuit Setup.jpg|none|Solar Setup Diagram]]&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* The [[Daylight Sensor]] MUST be facing West (sunrise), but its rotation doesn&#039;t matter.&lt;br /&gt;
* Solar panels should be rotated such as that 0% VERTICAL rotation faces west/sunrise, and 100% VERTICAL faces east/sunset. &lt;br /&gt;
* The [[Area Power Control]] is necessary for the circuit to stay powered during the night. It also hides all the modules from the rest of your system.&lt;br /&gt;
* Importantly, the solar input power doesn&#039;t directly connect to any of the logic writers. This not only ensures your system doesn&#039;t lose power but also prevents short-circuiting that would burn cables.&lt;br /&gt;
* Using 1.7 instead of 1.8 reduces the average error of this design to 6.5° and increases overall power generation, particularly in the afternoon.&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2348</id>
		<title>Solar Logic Circuits Guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2348"/>
		<updated>2018-01-04T00:45:20Z</updated>

		<summary type="html">&lt;p&gt;Tofof: /* Design */ consistency in calling it a-b&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
&lt;br /&gt;
Due to the frequency of game updates, all solutions are subject to change and may or may not be functional.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Accurate Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Authors:&#039;&#039;&#039; Wooodiii, Corvus_bkgk, Enfantcool, Baksch&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Accurate (average error 1.3°), Auto-reset (variant), Power conserving (variant)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 10-12&lt;br /&gt;
&lt;br /&gt;
This setup is accurate, giving 495-500W throughout the day, with lower output only when the sun is lower than the panels can physically aim at. &lt;br /&gt;
&lt;br /&gt;
This setup adjusts for the fact that solar panels rotate through only 150 degrees. Instead of converting using 180/100, this setup converts by doing 150/100. It then clips the value at the edges, where the prior calculation would give elevations that are negative or greater than 100 (representing the fact that we would prefer the panel to track past 0 or 100, aiming all the way down to the horizon instead of stopping 15° short). The listed average error is nonzero only because of this completely unavoidable portion; the error is 0 throughout the 15°-165° portion of the day.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]] (&amp;quot;Daylight Sensor&amp;quot;)&lt;br /&gt;
* 2 [[Kit (Logic I/O)]] (1 &amp;quot;Logic Reader&amp;quot;, 1 &amp;quot;Batch Writer&amp;quot;)&lt;br /&gt;
* 3 [[Kit (Logic Memory)]]&lt;br /&gt;
* 4 [[Kit (Logic Processor)]] (2 &amp;quot;Math Unit&amp;quot;, 2 &amp;quot;Min/Max Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* The [[Daylight Sensor]] should face the sunrise.&lt;br /&gt;
* Solar panels should be rotated such that 0% vertical faces the sunrise.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (A) || Daylight sensor, Angle || Sun&#039;s angle above the horizon&lt;br /&gt;
|-&lt;br /&gt;
| Memory (15) || 15 || True angle of solar panels at 0 elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (1.5) || 1.5 || 150/100, the conversion constant from solar angle (range:15-165, i.e. 150) to panel elevation (range:0-100)&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (B) || min(A,15) || Adjustment amount: 15, unless that would take A-B negative, in which case only enough to reach 0  (low edge case). Equivalent to min(A-B,0) but doesn&#039;t require storing 0. &lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (C) || A-B || Adjusted solar angle&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (D) || C/1.5 || Conversion from solar angle to panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (100) || 100 || Maximum possible panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (E) || min(D,100) || Cap elevation to 100 for solar angles past 165° (high edge case). Equivalent to doing min(A-B,165) before step D, but 100 is easier to set in memory than 165.&lt;br /&gt;
|-&lt;br /&gt;
| Batch Writer || E -&amp;gt; Solar panels, Vertical || Send elevation to solar panels&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:Accurate Solar Control.png]]&lt;br /&gt;
&lt;br /&gt;
=== Auto-Reset Variant ===&lt;br /&gt;
For panels that automatically reset their facing upon sunset, use two more components, and adjust the final min/max unit:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || 1 while daytime, 0 while nighttime&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (F)  || 100*L || Maximum panel elevation, now 100 during day and 0 at night&lt;br /&gt;
|-&lt;br /&gt;
| (from above) Min/Max Unit (E) || min(D,&#039;&#039;&#039;F&#039;&#039;&#039;) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Power-Conserving Variant ===&lt;br /&gt;
To conserve power, it&#039;s possible to avoid running the entire circuit at night. A transformer can be controlled to power the main logic network above. In this way, only the two new components need to remain powered at all times.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || As in the auto-reset variant above&lt;br /&gt;
|-&lt;br /&gt;
| Logic Writer || L -&amp;gt; Transformer, On  || Transformer powers main logic network&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Easy/Compact Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Author:&#039;&#039;&#039; Evie&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Stationeers Version:&#039;&#039;&#039; 0.1.1068.5451&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Simple, Inaccurate (Average error: 7.5°)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 5&lt;br /&gt;
&lt;br /&gt;
This imperfect setup is a common starting point. It starts off at 375w of power in the morning, builds up to 500w at zenith (noon) then back to 375. This is due to the fact that solars rotate through only 150 degrees of elevation and that this setup&#039;s math is correct only if they rotated through all 180 degrees of solar angle.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]]&lt;br /&gt;
* 2 [[Kit (Logic I/O)]]&lt;br /&gt;
* 1 [[Kit (Logic Memory)]]&lt;br /&gt;
* 1 [[Kit (Logic Processor)]] (&amp;quot;Math Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
[[File:Evie&#039;s Solar Circuit Setup.jpg|none|Solar Setup Diagram]]&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* The [[Daylight Sensor]] MUST be facing West (sunrise), but its rotation doesn&#039;t matter.&lt;br /&gt;
* Solar panels should be rotated such as that 0% VERTICAL rotation faces west/sunrise, and 100% VERTICAL faces east/sunset. &lt;br /&gt;
* The [[Area Power Control]] is necessary for the circuit to stay powered during the night. It also hides all the modules from the rest of your system.&lt;br /&gt;
* Importantly, the solar input power doesn&#039;t directly connect to any of the logic writers. This not only ensures your system doesn&#039;t lose power but also prevents short-circuiting that would burn cables.&lt;br /&gt;
* Using 1.7 instead of 1.8 reduces the average error of this design to 6.5° and increases overall power generation, particularly in the afternoon.&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2347</id>
		<title>Solar Logic Circuits Guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2347"/>
		<updated>2018-01-04T00:43:30Z</updated>

		<summary type="html">&lt;p&gt;Tofof: /* Design */ grammar&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
&lt;br /&gt;
Due to the frequency of game updates, all solutions are subject to change and may or may not be functional.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Accurate Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Authors:&#039;&#039;&#039; Wooodiii, Corvus_bkgk, Enfantcool, Baksch&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Accurate (average error 1.3°), Auto-reset (variant), Power conserving (variant)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 10-12&lt;br /&gt;
&lt;br /&gt;
This setup is accurate, giving 495-500W throughout the day, with lower output only when the sun is lower than the panels can physically aim at. &lt;br /&gt;
&lt;br /&gt;
This setup adjusts for the fact that solar panels rotate through only 150 degrees. Instead of converting using 180/100, this setup converts by doing 150/100. It then clips the value at the edges, where the prior calculation would give elevations that are negative or greater than 100 (representing the fact that we would prefer the panel to track past 0 or 100, aiming all the way down to the horizon instead of stopping 15° short). The listed average error is nonzero only because of this completely unavoidable portion; the error is 0 throughout the 15°-165° portion of the day.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]] (&amp;quot;Daylight Sensor&amp;quot;)&lt;br /&gt;
* 2 [[Kit (Logic I/O)]] (1 &amp;quot;Logic Reader&amp;quot;, 1 &amp;quot;Batch Writer&amp;quot;)&lt;br /&gt;
* 3 [[Kit (Logic Memory)]]&lt;br /&gt;
* 4 [[Kit (Logic Processor)]] (2 &amp;quot;Math Unit&amp;quot;, 2 &amp;quot;Min/Max Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* The [[Daylight Sensor]] should face the sunrise.&lt;br /&gt;
* Solar panels should be rotated such that 0% vertical faces the sunrise.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (A) || Daylight sensor, Angle || Sun&#039;s angle above the horizon&lt;br /&gt;
|-&lt;br /&gt;
| Memory (15) || 15 || True angle of solar panels at 0 elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (1.5) || 1.5 || 150/100, the conversion constant from solar angle (range:15-165, i.e. 150) to panel elevation (range:0-100)&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (B) || min(A,15) || Adjustment amount: 15, unless that would take A-B negative, in which case only enough to reach 0  (low edge case). Equivalent to min(A-B,0) but doesn&#039;t require storing 0. &lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (C) || A-B || Adjusted solar angle&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (D) || C/1.5 || Conversion from solar angle to panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (100) || 100 || Maximum possible panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (E) || min(D,100) || Cap elevation to 100 for solar angles past 165° (high edge case). Equivalent to doing min(C,165) between steps C and D, but 100 is easier to set in memory than 165.&lt;br /&gt;
|-&lt;br /&gt;
| Batch Writer || E -&amp;gt; Solar panels, Vertical || Send elevation to solar panels&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:Accurate Solar Control.png]]&lt;br /&gt;
&lt;br /&gt;
=== Auto-Reset Variant ===&lt;br /&gt;
For panels that automatically reset their facing upon sunset, use two more components, and adjust the final min/max unit:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || 1 while daytime, 0 while nighttime&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (F)  || 100*L || Maximum panel elevation, now 100 during day and 0 at night&lt;br /&gt;
|-&lt;br /&gt;
| (from above) Min/Max Unit (E) || min(D,&#039;&#039;&#039;F&#039;&#039;&#039;) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Power-Conserving Variant ===&lt;br /&gt;
To conserve power, it&#039;s possible to avoid running the entire circuit at night. A transformer can be controlled to power the main logic network above. In this way, only the two new components need to remain powered at all times.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || As in the auto-reset variant above&lt;br /&gt;
|-&lt;br /&gt;
| Logic Writer || L -&amp;gt; Transformer, On  || Transformer powers main logic network&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Easy/Compact Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Author:&#039;&#039;&#039; Evie&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Stationeers Version:&#039;&#039;&#039; 0.1.1068.5451&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Simple, Inaccurate (Average error: 7.5°)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 5&lt;br /&gt;
&lt;br /&gt;
This imperfect setup is a common starting point. It starts off at 375w of power in the morning, builds up to 500w at zenith (noon) then back to 375. This is due to the fact that solars rotate through only 150 degrees of elevation and that this setup&#039;s math is correct only if they rotated through all 180 degrees of solar angle.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]]&lt;br /&gt;
* 2 [[Kit (Logic I/O)]]&lt;br /&gt;
* 1 [[Kit (Logic Memory)]]&lt;br /&gt;
* 1 [[Kit (Logic Processor)]] (&amp;quot;Math Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
[[File:Evie&#039;s Solar Circuit Setup.jpg|none|Solar Setup Diagram]]&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* The [[Daylight Sensor]] MUST be facing West (sunrise), but its rotation doesn&#039;t matter.&lt;br /&gt;
* Solar panels should be rotated such as that 0% VERTICAL rotation faces west/sunrise, and 100% VERTICAL faces east/sunset. &lt;br /&gt;
* The [[Area Power Control]] is necessary for the circuit to stay powered during the night. It also hides all the modules from the rest of your system.&lt;br /&gt;
* Importantly, the solar input power doesn&#039;t directly connect to any of the logic writers. This not only ensures your system doesn&#039;t lose power but also prevents short-circuiting that would burn cables.&lt;br /&gt;
* Using 1.7 instead of 1.8 reduces the average error of this design to 6.5° and increases overall power generation, particularly in the afternoon.&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2346</id>
		<title>Solar Logic Circuits Guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2346"/>
		<updated>2018-01-04T00:42:23Z</updated>

		<summary type="html">&lt;p&gt;Tofof: /* Design */ further explanation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
&lt;br /&gt;
Due to the frequency of game updates, all solutions are subject to change and may or may not be functional.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Accurate Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Authors:&#039;&#039;&#039; Wooodiii, Corvus_bkgk, Enfantcool, Baksch&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Accurate (average error 1.3°), Auto-reset (variant), Power conserving (variant)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 10-12&lt;br /&gt;
&lt;br /&gt;
This setup is accurate, giving 495-500W throughout the day, with lower output only when the sun is lower than the panels can physically aim at. &lt;br /&gt;
&lt;br /&gt;
This setup adjusts for the fact that solar panels rotate through only 150 degrees. Instead of converting using 180/100, this setup converts by doing 150/100. It then clips the value at the edges, where the prior calculation would give elevations that are negative or greater than 100 (representing the fact that we would prefer the panel to track past 0 or 100, aiming all the way down to the horizon instead of stopping 15° short). The listed average error is nonzero only because of this completely unavoidable portion; the error is 0 throughout the 15°-165° portion of the day.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]] (&amp;quot;Daylight Sensor&amp;quot;)&lt;br /&gt;
* 2 [[Kit (Logic I/O)]] (1 &amp;quot;Logic Reader&amp;quot;, 1 &amp;quot;Batch Writer&amp;quot;)&lt;br /&gt;
* 3 [[Kit (Logic Memory)]]&lt;br /&gt;
* 4 [[Kit (Logic Processor)]] (2 &amp;quot;Math Unit&amp;quot;, 2 &amp;quot;Min/Max Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* The [[Daylight Sensor]] should face the sunrise.&lt;br /&gt;
* Solar panels should be rotated such that 0% vertical faces the sunrise.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (A) || Daylight sensor, Angle || Sun&#039;s angle above the horizon&lt;br /&gt;
|-&lt;br /&gt;
| Memory (15) || 15 || True angle of solar panels at 0 elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (1.5) || 1.5 || 150/100, the conversion constant from solar angle (range:15-165, i.e. 150) to panel elevation (range:0-100)&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (B) || min(A,15) || Adjustment amount: 15, unless that would take A-B negative, in which case only enough to reach 0  (low edge case). Equivalent to min(A-B,0) but doesn&#039;t require storing 0. &lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (C) || A-B || Adjusted solar angle&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (D) || C/1.5 || Conversion from solar angle to panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (100) || 100 || Maximum possible panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (E) || min(D,100) || Cap elevation to 100 for solar angles past 165° (high edge case). Equivalent to doing min(C,165) between steps C and D; 100 is just easier to set in memory.&lt;br /&gt;
|-&lt;br /&gt;
| Batch Writer || E -&amp;gt; Solar panels, Vertical || Send elevation to solar panels&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:Accurate Solar Control.png]]&lt;br /&gt;
&lt;br /&gt;
=== Auto-Reset Variant ===&lt;br /&gt;
For panels that automatically reset their facing upon sunset, use two more components, and adjust the final min/max unit:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || 1 while daytime, 0 while nighttime&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (F)  || 100*L || Maximum panel elevation, now 100 during day and 0 at night&lt;br /&gt;
|-&lt;br /&gt;
| (from above) Min/Max Unit (E) || min(D,&#039;&#039;&#039;F&#039;&#039;&#039;) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Power-Conserving Variant ===&lt;br /&gt;
To conserve power, it&#039;s possible to avoid running the entire circuit at night. A transformer can be controlled to power the main logic network above. In this way, only the two new components need to remain powered at all times.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || As in the auto-reset variant above&lt;br /&gt;
|-&lt;br /&gt;
| Logic Writer || L -&amp;gt; Transformer, On  || Transformer powers main logic network&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Easy/Compact Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Author:&#039;&#039;&#039; Evie&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Stationeers Version:&#039;&#039;&#039; 0.1.1068.5451&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Simple, Inaccurate (Average error: 7.5°)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 5&lt;br /&gt;
&lt;br /&gt;
This imperfect setup is a common starting point. It starts off at 375w of power in the morning, builds up to 500w at zenith (noon) then back to 375. This is due to the fact that solars rotate through only 150 degrees of elevation and that this setup&#039;s math is correct only if they rotated through all 180 degrees of solar angle.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]]&lt;br /&gt;
* 2 [[Kit (Logic I/O)]]&lt;br /&gt;
* 1 [[Kit (Logic Memory)]]&lt;br /&gt;
* 1 [[Kit (Logic Processor)]] (&amp;quot;Math Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
[[File:Evie&#039;s Solar Circuit Setup.jpg|none|Solar Setup Diagram]]&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* The [[Daylight Sensor]] MUST be facing West (sunrise), but its rotation doesn&#039;t matter.&lt;br /&gt;
* Solar panels should be rotated such as that 0% VERTICAL rotation faces west/sunrise, and 100% VERTICAL faces east/sunset. &lt;br /&gt;
* The [[Area Power Control]] is necessary for the circuit to stay powered during the night. It also hides all the modules from the rest of your system.&lt;br /&gt;
* Importantly, the solar input power doesn&#039;t directly connect to any of the logic writers. This not only ensures your system doesn&#039;t lose power but also prevents short-circuiting that would burn cables.&lt;br /&gt;
* Using 1.7 instead of 1.8 reduces the average error of this design to 6.5° and increases overall power generation, particularly in the afternoon.&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2345</id>
		<title>Solar Logic Circuits Guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2345"/>
		<updated>2018-01-04T00:32:45Z</updated>

		<summary type="html">&lt;p&gt;Tofof: /* Design */ bah more paretheneses&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
&lt;br /&gt;
Due to the frequency of game updates, all solutions are subject to change and may or may not be functional.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Accurate Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Authors:&#039;&#039;&#039; Wooodiii, Corvus_bkgk, Enfantcool, Baksch&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Accurate (average error 1.3°), Auto-reset (variant), Power conserving (variant)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 10-12&lt;br /&gt;
&lt;br /&gt;
This setup is accurate, giving 495-500W throughout the day, with lower output only when the sun is lower than the panels can physically aim at. &lt;br /&gt;
&lt;br /&gt;
This setup adjusts for the fact that solar panels rotate through only 150 degrees. Instead of converting using 180/100, this setup converts by doing 150/100. It then clips the value at the edges, where the prior calculation would give elevations that are negative or greater than 100 (representing the fact that we would prefer the panel to track past 0 or 100, aiming all the way down to the horizon instead of stopping 15° short). The listed average error is nonzero only because of this completely unavoidable portion; the error is 0 throughout the 15°-165° portion of the day.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]] (&amp;quot;Daylight Sensor&amp;quot;)&lt;br /&gt;
* 2 [[Kit (Logic I/O)]] (1 &amp;quot;Logic Reader&amp;quot;, 1 &amp;quot;Batch Writer&amp;quot;)&lt;br /&gt;
* 3 [[Kit (Logic Memory)]]&lt;br /&gt;
* 4 [[Kit (Logic Processor)]] (2 &amp;quot;Math Unit&amp;quot;, 2 &amp;quot;Min/Max Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* The [[Daylight Sensor]] should face the sunrise.&lt;br /&gt;
* Solar panels should be rotated such that 0% vertical faces the sunrise.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (A) || Daylight sensor, Angle || Sun&#039;s angle above the horizon&lt;br /&gt;
|-&lt;br /&gt;
| Memory (15) || 15 || True angle of solar panels at 0 elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (1.5) || 1.5 || 150/100, the conversion constant from solar angle (range:15-165, i.e. 150) to panel elevation (range:0-100)&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (B) || min(A,15) || Adjustment amount: 15, unless that would take A-B negative, in which case only enough to reach 0. Equivalent to min(A-B,0) but doesn&#039;t require storing 0.&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (C) || A-B || Adjusted solar angle (low edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (D) || C/1.5 || Conversion to panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (100) || 100 || Maximum panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (E) || min(D,100) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Batch Writer || E -&amp;gt; Solar panels, Vertical || Maximum panel elevation&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:Accurate Solar Control.png]]&lt;br /&gt;
&lt;br /&gt;
=== Auto-Reset Variant ===&lt;br /&gt;
For panels that automatically reset their facing upon sunset, use two more components, and adjust the final min/max unit:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || 1 while daytime, 0 while nighttime&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (F)  || 100*L || Maximum panel elevation, now 100 during day and 0 at night&lt;br /&gt;
|-&lt;br /&gt;
| (from above) Min/Max Unit (E) || min(D,&#039;&#039;&#039;F&#039;&#039;&#039;) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Power-Conserving Variant ===&lt;br /&gt;
To conserve power, it&#039;s possible to avoid running the entire circuit at night. A transformer can be controlled to power the main logic network above. In this way, only the two new components need to remain powered at all times.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || As in the auto-reset variant above&lt;br /&gt;
|-&lt;br /&gt;
| Logic Writer || L -&amp;gt; Transformer, On  || Transformer powers main logic network&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Easy/Compact Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Author:&#039;&#039;&#039; Evie&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Stationeers Version:&#039;&#039;&#039; 0.1.1068.5451&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Simple, Inaccurate (Average error: 7.5°)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 5&lt;br /&gt;
&lt;br /&gt;
This imperfect setup is a common starting point. It starts off at 375w of power in the morning, builds up to 500w at zenith (noon) then back to 375. This is due to the fact that solars rotate through only 150 degrees of elevation and that this setup&#039;s math is correct only if they rotated through all 180 degrees of solar angle.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]]&lt;br /&gt;
* 2 [[Kit (Logic I/O)]]&lt;br /&gt;
* 1 [[Kit (Logic Memory)]]&lt;br /&gt;
* 1 [[Kit (Logic Processor)]] (&amp;quot;Math Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
[[File:Evie&#039;s Solar Circuit Setup.jpg|none|Solar Setup Diagram]]&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* The [[Daylight Sensor]] MUST be facing West (sunrise), but its rotation doesn&#039;t matter.&lt;br /&gt;
* Solar panels should be rotated such as that 0% VERTICAL rotation faces west/sunrise, and 100% VERTICAL faces east/sunset. &lt;br /&gt;
* The [[Area Power Control]] is necessary for the circuit to stay powered during the night. It also hides all the modules from the rest of your system.&lt;br /&gt;
* Importantly, the solar input power doesn&#039;t directly connect to any of the logic writers. This not only ensures your system doesn&#039;t lose power but also prevents short-circuiting that would burn cables.&lt;br /&gt;
* Using 1.7 instead of 1.8 reduces the average error of this design to 6.5° and increases overall power generation, particularly in the afternoon.&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2344</id>
		<title>Solar Logic Circuits Guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2344"/>
		<updated>2018-01-04T00:32:26Z</updated>

		<summary type="html">&lt;p&gt;Tofof: /* Design */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
&lt;br /&gt;
Due to the frequency of game updates, all solutions are subject to change and may or may not be functional.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Accurate Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Authors:&#039;&#039;&#039; Wooodiii, Corvus_bkgk, Enfantcool, Baksch&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Accurate (average error 1.3°), Auto-reset (variant), Power conserving (variant)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 10-12&lt;br /&gt;
&lt;br /&gt;
This setup is accurate, giving 495-500W throughout the day, with lower output only when the sun is lower than the panels can physically aim at. &lt;br /&gt;
&lt;br /&gt;
This setup adjusts for the fact that solar panels rotate through only 150 degrees. Instead of converting using 180/100, this setup converts by doing 150/100. It then clips the value at the edges, where the prior calculation would give elevations that are negative or greater than 100 (representing the fact that we would prefer the panel to track past 0 or 100, aiming all the way down to the horizon instead of stopping 15° short). The listed average error is nonzero only because of this completely unavoidable portion; the error is 0 throughout the 15°-165° portion of the day.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]] (&amp;quot;Daylight Sensor&amp;quot;)&lt;br /&gt;
* 2 [[Kit (Logic I/O)]] (1 &amp;quot;Logic Reader&amp;quot;, 1 &amp;quot;Batch Writer&amp;quot;)&lt;br /&gt;
* 3 [[Kit (Logic Memory)]]&lt;br /&gt;
* 4 [[Kit (Logic Processor)]] (2 &amp;quot;Math Unit&amp;quot;, 2 &amp;quot;Min/Max Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* The [[Daylight Sensor]] should face the sunrise.&lt;br /&gt;
* Solar panels should be rotated such that 0% vertical faces the sunrise.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (A) || Daylight sensor, Angle || Sun&#039;s angle above the horizon&lt;br /&gt;
|-&lt;br /&gt;
| Memory (15) || 15 || True angle of solar panels at 0 elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (1.5) || 1.5 || 150/100, the conversion constant from solar angle (range:15-165, i.e. 150) to panel elevation (range:0-100)&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (B) || min(A,15) || Adjustment amount: 15, unless that would take A-B negative, in which case only enough to reach 0. Equivalent to min(A-B,0) but doesn&#039;t require storing 0.)&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (C) || A-B || Adjusted solar angle (low edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (D) || C/1.5 || Conversion to panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (100) || 100 || Maximum panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (E) || min(D,100) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Batch Writer || E -&amp;gt; Solar panels, Vertical || Maximum panel elevation&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:Accurate Solar Control.png]]&lt;br /&gt;
&lt;br /&gt;
=== Auto-Reset Variant ===&lt;br /&gt;
For panels that automatically reset their facing upon sunset, use two more components, and adjust the final min/max unit:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || 1 while daytime, 0 while nighttime&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (F)  || 100*L || Maximum panel elevation, now 100 during day and 0 at night&lt;br /&gt;
|-&lt;br /&gt;
| (from above) Min/Max Unit (E) || min(D,&#039;&#039;&#039;F&#039;&#039;&#039;) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Power-Conserving Variant ===&lt;br /&gt;
To conserve power, it&#039;s possible to avoid running the entire circuit at night. A transformer can be controlled to power the main logic network above. In this way, only the two new components need to remain powered at all times.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || As in the auto-reset variant above&lt;br /&gt;
|-&lt;br /&gt;
| Logic Writer || L -&amp;gt; Transformer, On  || Transformer powers main logic network&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Easy/Compact Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Author:&#039;&#039;&#039; Evie&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Stationeers Version:&#039;&#039;&#039; 0.1.1068.5451&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Simple, Inaccurate (Average error: 7.5°)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 5&lt;br /&gt;
&lt;br /&gt;
This imperfect setup is a common starting point. It starts off at 375w of power in the morning, builds up to 500w at zenith (noon) then back to 375. This is due to the fact that solars rotate through only 150 degrees of elevation and that this setup&#039;s math is correct only if they rotated through all 180 degrees of solar angle.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]]&lt;br /&gt;
* 2 [[Kit (Logic I/O)]]&lt;br /&gt;
* 1 [[Kit (Logic Memory)]]&lt;br /&gt;
* 1 [[Kit (Logic Processor)]] (&amp;quot;Math Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
[[File:Evie&#039;s Solar Circuit Setup.jpg|none|Solar Setup Diagram]]&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* The [[Daylight Sensor]] MUST be facing West (sunrise), but its rotation doesn&#039;t matter.&lt;br /&gt;
* Solar panels should be rotated such as that 0% VERTICAL rotation faces west/sunrise, and 100% VERTICAL faces east/sunset. &lt;br /&gt;
* The [[Area Power Control]] is necessary for the circuit to stay powered during the night. It also hides all the modules from the rest of your system.&lt;br /&gt;
* Importantly, the solar input power doesn&#039;t directly connect to any of the logic writers. This not only ensures your system doesn&#039;t lose power but also prevents short-circuiting that would burn cables.&lt;br /&gt;
* Using 1.7 instead of 1.8 reduces the average error of this design to 6.5° and increases overall power generation, particularly in the afternoon.&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2343</id>
		<title>Solar Logic Circuits Guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2343"/>
		<updated>2018-01-04T00:30:57Z</updated>

		<summary type="html">&lt;p&gt;Tofof: /* Design */ unbalanced parentheses&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
&lt;br /&gt;
Due to the frequency of game updates, all solutions are subject to change and may or may not be functional.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Accurate Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Authors:&#039;&#039;&#039; Wooodiii, Corvus_bkgk, Enfantcool, Baksch&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Accurate (average error 1.3°), Auto-reset (variant), Power conserving (variant)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 10-12&lt;br /&gt;
&lt;br /&gt;
This setup is accurate, giving 495-500W throughout the day, with lower output only when the sun is lower than the panels can physically aim at. &lt;br /&gt;
&lt;br /&gt;
This setup adjusts for the fact that solar panels rotate through only 150 degrees. Instead of converting using 180/100, this setup converts by doing 150/100. It then clips the value at the edges, where the prior calculation would give elevations that are negative or greater than 100 (representing the fact that we would prefer the panel to track past 0 or 100, aiming all the way down to the horizon instead of stopping 15° short). The listed average error is nonzero only because of this completely unavoidable portion; the error is 0 throughout the 15°-165° portion of the day.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]] (&amp;quot;Daylight Sensor&amp;quot;)&lt;br /&gt;
* 2 [[Kit (Logic I/O)]] (1 &amp;quot;Logic Reader&amp;quot;, 1 &amp;quot;Batch Writer&amp;quot;)&lt;br /&gt;
* 3 [[Kit (Logic Memory)]]&lt;br /&gt;
* 4 [[Kit (Logic Processor)]] (2 &amp;quot;Math Unit&amp;quot;, 2 &amp;quot;Min/Max Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* The [[Daylight Sensor]] should face the sunrise.&lt;br /&gt;
* Solar panels should be rotated such that 0% vertical faces the sunrise.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (A) || Daylight sensor, Angle || Sun&#039;s angle above the horizon&lt;br /&gt;
|-&lt;br /&gt;
| Memory (15) || 15 || True angle of solar panels at 0 elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (1.5) || 1.5 || 150/100, the conversion constant from solar angle (range:15-165, i.e. 150) to panel elevation (range:0-100)&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (B) || min(A,15) || Adjustment amount: 15, unless that would take A-B negative, in which case only enough to get to 0. This is equivalent to min(A-B,0) but doesn&#039;t require storing 0.)&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (C) || A-B || Adjusted solar angle (low edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (D) || C/1.5 || Conversion to panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (100) || 100 || Maximum panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (E) || min(D,100) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Batch Writer || E -&amp;gt; Solar panels, Vertical || Maximum panel elevation&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:Accurate Solar Control.png]]&lt;br /&gt;
&lt;br /&gt;
=== Auto-Reset Variant ===&lt;br /&gt;
For panels that automatically reset their facing upon sunset, use two more components, and adjust the final min/max unit:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || 1 while daytime, 0 while nighttime&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (F)  || 100*L || Maximum panel elevation, now 100 during day and 0 at night&lt;br /&gt;
|-&lt;br /&gt;
| (from above) Min/Max Unit (E) || min(D,&#039;&#039;&#039;F&#039;&#039;&#039;) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Power-Conserving Variant ===&lt;br /&gt;
To conserve power, it&#039;s possible to avoid running the entire circuit at night. A transformer can be controlled to power the main logic network above. In this way, only the two new components need to remain powered at all times.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || As in the auto-reset variant above&lt;br /&gt;
|-&lt;br /&gt;
| Logic Writer || L -&amp;gt; Transformer, On  || Transformer powers main logic network&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Easy/Compact Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Author:&#039;&#039;&#039; Evie&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Stationeers Version:&#039;&#039;&#039; 0.1.1068.5451&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Simple, Inaccurate (Average error: 7.5°)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 5&lt;br /&gt;
&lt;br /&gt;
This imperfect setup is a common starting point. It starts off at 375w of power in the morning, builds up to 500w at zenith (noon) then back to 375. This is due to the fact that solars rotate through only 150 degrees of elevation and that this setup&#039;s math is correct only if they rotated through all 180 degrees of solar angle.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]]&lt;br /&gt;
* 2 [[Kit (Logic I/O)]]&lt;br /&gt;
* 1 [[Kit (Logic Memory)]]&lt;br /&gt;
* 1 [[Kit (Logic Processor)]] (&amp;quot;Math Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
[[File:Evie&#039;s Solar Circuit Setup.jpg|none|Solar Setup Diagram]]&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* The [[Daylight Sensor]] MUST be facing West (sunrise), but its rotation doesn&#039;t matter.&lt;br /&gt;
* Solar panels should be rotated such as that 0% VERTICAL rotation faces west/sunrise, and 100% VERTICAL faces east/sunset. &lt;br /&gt;
* The [[Area Power Control]] is necessary for the circuit to stay powered during the night. It also hides all the modules from the rest of your system.&lt;br /&gt;
* Importantly, the solar input power doesn&#039;t directly connect to any of the logic writers. This not only ensures your system doesn&#039;t lose power but also prevents short-circuiting that would burn cables.&lt;br /&gt;
* Using 1.7 instead of 1.8 reduces the average error of this design to 6.5° and increases overall power generation, particularly in the afternoon.&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2342</id>
		<title>Solar Logic Circuits Guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2342"/>
		<updated>2018-01-04T00:30:23Z</updated>

		<summary type="html">&lt;p&gt;Tofof: /* Design */ wording&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
&lt;br /&gt;
Due to the frequency of game updates, all solutions are subject to change and may or may not be functional.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Accurate Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Authors:&#039;&#039;&#039; Wooodiii, Corvus_bkgk, Enfantcool, Baksch&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Accurate (average error 1.3°), Auto-reset (variant), Power conserving (variant)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 10-12&lt;br /&gt;
&lt;br /&gt;
This setup is accurate, giving 495-500W throughout the day, with lower output only when the sun is lower than the panels can physically aim at. &lt;br /&gt;
&lt;br /&gt;
This setup adjusts for the fact that solar panels rotate through only 150 degrees. Instead of converting using 180/100, this setup converts by doing 150/100. It then clips the value at the edges, where the prior calculation would give elevations that are negative or greater than 100 (representing the fact that we would prefer the panel to track past 0 or 100, aiming all the way down to the horizon instead of stopping 15° short). The listed average error is nonzero only because of this completely unavoidable portion; the error is 0 throughout the 15°-165° portion of the day.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]] (&amp;quot;Daylight Sensor&amp;quot;)&lt;br /&gt;
* 2 [[Kit (Logic I/O)]] (1 &amp;quot;Logic Reader&amp;quot;, 1 &amp;quot;Batch Writer&amp;quot;)&lt;br /&gt;
* 3 [[Kit (Logic Memory)]]&lt;br /&gt;
* 4 [[Kit (Logic Processor)]] (2 &amp;quot;Math Unit&amp;quot;, 2 &amp;quot;Min/Max Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* The [[Daylight Sensor]] should face the sunrise.&lt;br /&gt;
* Solar panels should be rotated such that 0% vertical faces the sunrise.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (A) || Daylight sensor, Angle || Sun&#039;s angle above the horizon&lt;br /&gt;
|-&lt;br /&gt;
| Memory (15) || 15 || True angle of solar panels at 0 elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (1.5) || 1.5 || 150/100, the conversion constant from solar angle (range:15-165, i.e. 150) to panel elevation (range:0-100)&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (B) || min(A,15) || Adjustment amount (15, unless that would take A-B negative, in which case only enough to get to 0. This is equivalent to min(A-B,0) but doesn&#039;t require storing 0.)&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (C) || A-B || Adjusted solar angle (low edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (D) || C/1.5 || Conversion to panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (100) || 100 || Maximum panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (E) || min(D,100) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Batch Writer || E -&amp;gt; Solar panels, Vertical || Maximum panel elevation&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:Accurate Solar Control.png]]&lt;br /&gt;
&lt;br /&gt;
=== Auto-Reset Variant ===&lt;br /&gt;
For panels that automatically reset their facing upon sunset, use two more components, and adjust the final min/max unit:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || 1 while daytime, 0 while nighttime&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (F)  || 100*L || Maximum panel elevation, now 100 during day and 0 at night&lt;br /&gt;
|-&lt;br /&gt;
| (from above) Min/Max Unit (E) || min(D,&#039;&#039;&#039;F&#039;&#039;&#039;) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Power-Conserving Variant ===&lt;br /&gt;
To conserve power, it&#039;s possible to avoid running the entire circuit at night. A transformer can be controlled to power the main logic network above. In this way, only the two new components need to remain powered at all times.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || As in the auto-reset variant above&lt;br /&gt;
|-&lt;br /&gt;
| Logic Writer || L -&amp;gt; Transformer, On  || Transformer powers main logic network&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Easy/Compact Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Author:&#039;&#039;&#039; Evie&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Stationeers Version:&#039;&#039;&#039; 0.1.1068.5451&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Simple, Inaccurate (Average error: 7.5°)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 5&lt;br /&gt;
&lt;br /&gt;
This imperfect setup is a common starting point. It starts off at 375w of power in the morning, builds up to 500w at zenith (noon) then back to 375. This is due to the fact that solars rotate through only 150 degrees of elevation and that this setup&#039;s math is correct only if they rotated through all 180 degrees of solar angle.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]]&lt;br /&gt;
* 2 [[Kit (Logic I/O)]]&lt;br /&gt;
* 1 [[Kit (Logic Memory)]]&lt;br /&gt;
* 1 [[Kit (Logic Processor)]] (&amp;quot;Math Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
[[File:Evie&#039;s Solar Circuit Setup.jpg|none|Solar Setup Diagram]]&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* The [[Daylight Sensor]] MUST be facing West (sunrise), but its rotation doesn&#039;t matter.&lt;br /&gt;
* Solar panels should be rotated such as that 0% VERTICAL rotation faces west/sunrise, and 100% VERTICAL faces east/sunset. &lt;br /&gt;
* The [[Area Power Control]] is necessary for the circuit to stay powered during the night. It also hides all the modules from the rest of your system.&lt;br /&gt;
* Importantly, the solar input power doesn&#039;t directly connect to any of the logic writers. This not only ensures your system doesn&#039;t lose power but also prevents short-circuiting that would burn cables.&lt;br /&gt;
* Using 1.7 instead of 1.8 reduces the average error of this design to 6.5° and increases overall power generation, particularly in the afternoon.&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2341</id>
		<title>Solar Logic Circuits Guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2341"/>
		<updated>2018-01-04T00:28:07Z</updated>

		<summary type="html">&lt;p&gt;Tofof: /* Design */ more clarifications&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
&lt;br /&gt;
Due to the frequency of game updates, all solutions are subject to change and may or may not be functional.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Accurate Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Authors:&#039;&#039;&#039; Wooodiii, Corvus_bkgk, Enfantcool, Baksch&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Accurate (average error 1.3°), Auto-reset (variant), Power conserving (variant)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 10-12&lt;br /&gt;
&lt;br /&gt;
This setup is accurate, giving 495-500W throughout the day, with lower output only when the sun is lower than the panels can physically aim at. &lt;br /&gt;
&lt;br /&gt;
This setup adjusts for the fact that solar panels rotate through only 150 degrees. Instead of converting using 180/100, this setup converts by doing 150/100. It then clips the value at the edges, where the prior calculation would give elevations that are negative or greater than 100 (representing the fact that we would prefer the panel to track past 0 or 100, aiming all the way down to the horizon instead of stopping 15° short). The listed average error is nonzero only because of this completely unavoidable portion; the error is 0 throughout the 15°-165° portion of the day.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]] (&amp;quot;Daylight Sensor&amp;quot;)&lt;br /&gt;
* 2 [[Kit (Logic I/O)]] (1 &amp;quot;Logic Reader&amp;quot;, 1 &amp;quot;Batch Writer&amp;quot;)&lt;br /&gt;
* 3 [[Kit (Logic Memory)]]&lt;br /&gt;
* 4 [[Kit (Logic Processor)]] (2 &amp;quot;Math Unit&amp;quot;, 2 &amp;quot;Min/Max Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* The [[Daylight Sensor]] should face the sunrise.&lt;br /&gt;
* Solar panels should be rotated such that 0% vertical faces the sunrise.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (A) || Daylight sensor, Angle || Sun&#039;s angle above the horizon&lt;br /&gt;
|-&lt;br /&gt;
| Memory (15) || 15 || True angle of solar panels at 0 elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (1.5) || 1.5 || 150/100, the conversion constant from solar angle (range:15-165, i.e. 150) to panel elevation (range:0-100)&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (B) || min(A,15) || Adjustment amount (15, unless that would take A-B negative, in which case only enough to get to 0.  This is instead of min(A-B,0) which would require an extra component to store 0)&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (C) || A-B || Adjusted solar angle (low edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (D) || C/1.5 || Conversion to panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (100) || 100 || Maximum panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (E) || min(D,100) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Batch Writer || E -&amp;gt; Solar panels, Vertical || Maximum panel elevation&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:Accurate Solar Control.png]]&lt;br /&gt;
&lt;br /&gt;
=== Auto-Reset Variant ===&lt;br /&gt;
For panels that automatically reset their facing upon sunset, use two more components, and adjust the final min/max unit:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || 1 while daytime, 0 while nighttime&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (F)  || 100*L || Maximum panel elevation, now 100 during day and 0 at night&lt;br /&gt;
|-&lt;br /&gt;
| (from above) Min/Max Unit (E) || min(D,&#039;&#039;&#039;F&#039;&#039;&#039;) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Power-Conserving Variant ===&lt;br /&gt;
To conserve power, it&#039;s possible to avoid running the entire circuit at night. A transformer can be controlled to power the main logic network above. In this way, only the two new components need to remain powered at all times.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || As in the auto-reset variant above&lt;br /&gt;
|-&lt;br /&gt;
| Logic Writer || L -&amp;gt; Transformer, On  || Transformer powers main logic network&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Easy/Compact Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Author:&#039;&#039;&#039; Evie&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Stationeers Version:&#039;&#039;&#039; 0.1.1068.5451&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Simple, Inaccurate (Average error: 7.5°)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 5&lt;br /&gt;
&lt;br /&gt;
This imperfect setup is a common starting point. It starts off at 375w of power in the morning, builds up to 500w at zenith (noon) then back to 375. This is due to the fact that solars rotate through only 150 degrees of elevation and that this setup&#039;s math is correct only if they rotated through all 180 degrees of solar angle.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]]&lt;br /&gt;
* 2 [[Kit (Logic I/O)]]&lt;br /&gt;
* 1 [[Kit (Logic Memory)]]&lt;br /&gt;
* 1 [[Kit (Logic Processor)]] (&amp;quot;Math Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
[[File:Evie&#039;s Solar Circuit Setup.jpg|none|Solar Setup Diagram]]&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* The [[Daylight Sensor]] MUST be facing West (sunrise), but its rotation doesn&#039;t matter.&lt;br /&gt;
* Solar panels should be rotated such as that 0% VERTICAL rotation faces west/sunrise, and 100% VERTICAL faces east/sunset. &lt;br /&gt;
* The [[Area Power Control]] is necessary for the circuit to stay powered during the night. It also hides all the modules from the rest of your system.&lt;br /&gt;
* Importantly, the solar input power doesn&#039;t directly connect to any of the logic writers. This not only ensures your system doesn&#039;t lose power but also prevents short-circuiting that would burn cables.&lt;br /&gt;
* Using 1.7 instead of 1.8 reduces the average error of this design to 6.5° and increases overall power generation, particularly in the afternoon.&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2314</id>
		<title>Solar Logic Circuits Guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2314"/>
		<updated>2018-01-01T20:32:08Z</updated>

		<summary type="html">&lt;p&gt;Tofof: /* Auto-Reset Variant */ Compare should be min/max&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
&lt;br /&gt;
Due to the frequency of game updates, all solutions are subject to change and may or may not be functional.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Accurate Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Authors:&#039;&#039;&#039; Wooodiii, Corvus_bkgk, Enfantcool, Baksch&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Accurate (average error 1.3°), Auto-reset (variant), Power conserving (variant)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 10-12&lt;br /&gt;
&lt;br /&gt;
This setup is accurate, giving 495-500W throughout the day, with lower output only when the sun is lower than the panels can physically aim at. &lt;br /&gt;
&lt;br /&gt;
This setup adjusts for the fact that solar panels rotate through only 150 degrees. Instead of converting using 180/100, this setup converts by doing 150/100. It then clips the value at the edges, where the prior calculation would give elevations that are negative or greater than 100 (representing the fact that we would prefer the panel to track past 0 or 100, aiming all the way down to the horizon instead of stopping 15° short). The listed average error is nonzero only because of this completely unavoidable portion; the error is 0 throughout the 15°-165° portion of the day.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]] (&amp;quot;Daylight Sensor&amp;quot;)&lt;br /&gt;
* 2 [[Kit (Logic I/O)]] (1 &amp;quot;Logic Reader&amp;quot;, 1 &amp;quot;Batch Writer&amp;quot;)&lt;br /&gt;
* 3 [[Kit (Logic Memory)]]&lt;br /&gt;
* 4 [[Kit (Logic Processor)]] (2 &amp;quot;Math Unit&amp;quot;, 2 &amp;quot;Min/Max Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* The [[Daylight Sensor]] should face the sunrise.&lt;br /&gt;
* Solar panels should be rotated such that 0% vertical faces the sunrise.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (A) || Daylight sensor, Angle || Sun&#039;s angle above the horizon&lt;br /&gt;
|-&lt;br /&gt;
| Memory (15) || 15 || True angle of solar panels at 0 elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (1.5) || 1.5 || 150/100, the conversion constant from solar angle (range:15-165, i.e. 150) to panel elevation (range:0-100)&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (B) || min(A,15) || Adjustment amount&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (C) || A-B || Adjusted solar angle (low edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (D) || C/1.5 || Conversion to panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (100) || 100 || Maximum panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (E) || min(D,100) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Batch Writer || E -&amp;gt; Solar panels, Vertical || Maximum panel elevation&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:Accurate Solar Control.png]]&lt;br /&gt;
&lt;br /&gt;
=== Auto-Reset Variant ===&lt;br /&gt;
For panels that automatically reset their facing upon sunset, use two more components, and adjust the final min/max unit:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || 1 while daytime, 0 while nighttime&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (F)  || 100*L || Maximum panel elevation, now 100 during day and 0 at night&lt;br /&gt;
|-&lt;br /&gt;
| (from above) Min/Max Unit (E) || min(D,&#039;&#039;&#039;F&#039;&#039;&#039;) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Power-Conserving Variant ===&lt;br /&gt;
To conserve power, it&#039;s possible to avoid running the entire circuit at night. A transformer can be controlled to power the main logic network above. In this way, only the two new components need to remain powered at all times.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || As in the auto-reset variant above&lt;br /&gt;
|-&lt;br /&gt;
| Logic Writer || L -&amp;gt; Transformer, On  || Transformer powers main logic network&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Easy/Compact Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Author:&#039;&#039;&#039; Evie&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Stationeers Version:&#039;&#039;&#039; 0.1.1068.5451&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Simple, Inaccurate (Average error: 7.5°)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 5&lt;br /&gt;
&lt;br /&gt;
This imperfect setup is a common starting point. It starts off at 375w of power in the morning, builds up to 500w at zenith (noon) then back to 375. This is due to the fact that solars rotate through only 150 degrees of elevation and that this setup&#039;s math is correct only if they rotated through all 180 degrees of solar angle.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]]&lt;br /&gt;
* 2 [[Kit (Logic I/O)]]&lt;br /&gt;
* 1 [[Kit (Logic Memory)]]&lt;br /&gt;
* 1 [[Kit (Logic Processor)]] (&amp;quot;Math Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
[[File:Evie&#039;s Solar Circuit Setup.jpg|none|Solar Setup Diagram]]&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* The [[Daylight Sensor]] MUST be facing West (sunrise), but its rotation doesn&#039;t matter.&lt;br /&gt;
* Solar panels should be rotated such as that 0% VERTICAL rotation faces west/sunrise, and 100% VERTICAL faces east/sunset. &lt;br /&gt;
* The [[Area Power Control]] is necessary for the circuit to stay powered during the night. It also hides all the modules from the rest of your system.&lt;br /&gt;
* Importantly, the solar input power doesn&#039;t directly connect to any of the logic writers. This not only ensures your system doesn&#039;t lose power but also prevents short-circuiting that would burn cables.&lt;br /&gt;
* Using 1.7 instead of 1.8 reduces the average error of this design to 6.5° and increases overall power generation, particularly in the afternoon.&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2313</id>
		<title>Solar Logic Circuits Guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2313"/>
		<updated>2018-01-01T20:31:43Z</updated>

		<summary type="html">&lt;p&gt;Tofof: /* Design */ compare should be minmax&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
&lt;br /&gt;
Due to the frequency of game updates, all solutions are subject to change and may or may not be functional.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Accurate Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Authors:&#039;&#039;&#039; Wooodiii, Corvus_bkgk, Enfantcool, Baksch&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Accurate (average error 1.3°), Auto-reset (variant), Power conserving (variant)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 10-12&lt;br /&gt;
&lt;br /&gt;
This setup is accurate, giving 495-500W throughout the day, with lower output only when the sun is lower than the panels can physically aim at. &lt;br /&gt;
&lt;br /&gt;
This setup adjusts for the fact that solar panels rotate through only 150 degrees. Instead of converting using 180/100, this setup converts by doing 150/100. It then clips the value at the edges, where the prior calculation would give elevations that are negative or greater than 100 (representing the fact that we would prefer the panel to track past 0 or 100, aiming all the way down to the horizon instead of stopping 15° short). The listed average error is nonzero only because of this completely unavoidable portion; the error is 0 throughout the 15°-165° portion of the day.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]] (&amp;quot;Daylight Sensor&amp;quot;)&lt;br /&gt;
* 2 [[Kit (Logic I/O)]] (1 &amp;quot;Logic Reader&amp;quot;, 1 &amp;quot;Batch Writer&amp;quot;)&lt;br /&gt;
* 3 [[Kit (Logic Memory)]]&lt;br /&gt;
* 4 [[Kit (Logic Processor)]] (2 &amp;quot;Math Unit&amp;quot;, 2 &amp;quot;Min/Max Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* The [[Daylight Sensor]] should face the sunrise.&lt;br /&gt;
* Solar panels should be rotated such that 0% vertical faces the sunrise.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (A) || Daylight sensor, Angle || Sun&#039;s angle above the horizon&lt;br /&gt;
|-&lt;br /&gt;
| Memory (15) || 15 || True angle of solar panels at 0 elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (1.5) || 1.5 || 150/100, the conversion constant from solar angle (range:15-165, i.e. 150) to panel elevation (range:0-100)&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (B) || min(A,15) || Adjustment amount&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (C) || A-B || Adjusted solar angle (low edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (D) || C/1.5 || Conversion to panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (100) || 100 || Maximum panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Min/Max Unit (E) || min(D,100) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Batch Writer || E -&amp;gt; Solar panels, Vertical || Maximum panel elevation&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:Accurate Solar Control.png]]&lt;br /&gt;
&lt;br /&gt;
=== Auto-Reset Variant ===&lt;br /&gt;
For panels that automatically reset their facing upon sunset, use two more components, and adjust the final compare unit:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || 1 while daytime, 0 while nighttime&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (F)  || 100*L || Maximum panel elevation, now 100 during day and 0 at night&lt;br /&gt;
|-&lt;br /&gt;
| (from above) Compare Unit (E) || min(D,&#039;&#039;&#039;F&#039;&#039;&#039;) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Power-Conserving Variant ===&lt;br /&gt;
To conserve power, it&#039;s possible to avoid running the entire circuit at night. A transformer can be controlled to power the main logic network above. In this way, only the two new components need to remain powered at all times.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || As in the auto-reset variant above&lt;br /&gt;
|-&lt;br /&gt;
| Logic Writer || L -&amp;gt; Transformer, On  || Transformer powers main logic network&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Easy/Compact Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Author:&#039;&#039;&#039; Evie&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Stationeers Version:&#039;&#039;&#039; 0.1.1068.5451&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Simple, Inaccurate (Average error: 7.5°)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 5&lt;br /&gt;
&lt;br /&gt;
This imperfect setup is a common starting point. It starts off at 375w of power in the morning, builds up to 500w at zenith (noon) then back to 375. This is due to the fact that solars rotate through only 150 degrees of elevation and that this setup&#039;s math is correct only if they rotated through all 180 degrees of solar angle.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]]&lt;br /&gt;
* 2 [[Kit (Logic I/O)]]&lt;br /&gt;
* 1 [[Kit (Logic Memory)]]&lt;br /&gt;
* 1 [[Kit (Logic Processor)]] (&amp;quot;Math Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
[[File:Evie&#039;s Solar Circuit Setup.jpg|none|Solar Setup Diagram]]&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* The [[Daylight Sensor]] MUST be facing West (sunrise), but its rotation doesn&#039;t matter.&lt;br /&gt;
* Solar panels should be rotated such as that 0% VERTICAL rotation faces west/sunrise, and 100% VERTICAL faces east/sunset. &lt;br /&gt;
* The [[Area Power Control]] is necessary for the circuit to stay powered during the night. It also hides all the modules from the rest of your system.&lt;br /&gt;
* Importantly, the solar input power doesn&#039;t directly connect to any of the logic writers. This not only ensures your system doesn&#039;t lose power but also prevents short-circuiting that would burn cables.&lt;br /&gt;
* Using 1.7 instead of 1.8 reduces the average error of this design to 6.5° and increases overall power generation, particularly in the afternoon.&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2312</id>
		<title>Solar Logic Circuits Guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2312"/>
		<updated>2018-01-01T20:30:27Z</updated>

		<summary type="html">&lt;p&gt;Tofof: /* Easy/Compact Solar Setup */ match other headings&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
&lt;br /&gt;
Due to the frequency of game updates, all solutions are subject to change and may or may not be functional.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Accurate Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Authors:&#039;&#039;&#039; Wooodiii, Corvus_bkgk, Enfantcool, Baksch&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Accurate (average error 1.3°), Auto-reset (variant), Power conserving (variant)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 10-12&lt;br /&gt;
&lt;br /&gt;
This setup is accurate, giving 495-500W throughout the day, with lower output only when the sun is lower than the panels can physically aim at. &lt;br /&gt;
&lt;br /&gt;
This setup adjusts for the fact that solar panels rotate through only 150 degrees. Instead of converting using 180/100, this setup converts by doing 150/100. It then clips the value at the edges, where the prior calculation would give elevations that are negative or greater than 100 (representing the fact that we would prefer the panel to track past 0 or 100, aiming all the way down to the horizon instead of stopping 15° short). The listed average error is nonzero only because of this completely unavoidable portion; the error is 0 throughout the 15°-165° portion of the day.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]] (&amp;quot;Daylight Sensor&amp;quot;)&lt;br /&gt;
* 2 [[Kit (Logic I/O)]] (1 &amp;quot;Logic Reader&amp;quot;, 1 &amp;quot;Batch Writer&amp;quot;)&lt;br /&gt;
* 3 [[Kit (Logic Memory)]]&lt;br /&gt;
* 4 [[Kit (Logic Processor)]] (2 &amp;quot;Math Unit&amp;quot;, 2 &amp;quot;Min/Max Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* The [[Daylight Sensor]] should face the sunrise.&lt;br /&gt;
* Solar panels should be rotated such that 0% vertical faces the sunrise.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (A) || Daylight sensor, Angle || Sun&#039;s angle above the horizon&lt;br /&gt;
|-&lt;br /&gt;
| Memory (15) || 15 || True angle of solar panels at 0 elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (1.5) || 1.5 || 150/100, the conversion constant from solar angle (range:15-165, i.e. 150) to panel elevation (range:0-100)&lt;br /&gt;
|-&lt;br /&gt;
| Compare Unit (B) || min(A,15) || Adjustment amount&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (C) || A-B || Adjusted solar angle (low edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (D) || C/1.5 || Conversion to panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (100) || 100 || Maximum panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Compare Unit (E) || min(D,100) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Batch Writer || E -&amp;gt; Solar panels, Vertical || Maximum panel elevation&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:Accurate Solar Control.png]]&lt;br /&gt;
&lt;br /&gt;
=== Auto-Reset Variant ===&lt;br /&gt;
For panels that automatically reset their facing upon sunset, use two more components, and adjust the final compare unit:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || 1 while daytime, 0 while nighttime&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (F)  || 100*L || Maximum panel elevation, now 100 during day and 0 at night&lt;br /&gt;
|-&lt;br /&gt;
| (from above) Compare Unit (E) || min(D,&#039;&#039;&#039;F&#039;&#039;&#039;) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Power-Conserving Variant ===&lt;br /&gt;
To conserve power, it&#039;s possible to avoid running the entire circuit at night. A transformer can be controlled to power the main logic network above. In this way, only the two new components need to remain powered at all times.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || As in the auto-reset variant above&lt;br /&gt;
|-&lt;br /&gt;
| Logic Writer || L -&amp;gt; Transformer, On  || Transformer powers main logic network&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Easy/Compact Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Author:&#039;&#039;&#039; Evie&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Stationeers Version:&#039;&#039;&#039; 0.1.1068.5451&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Simple, Inaccurate (Average error: 7.5°)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 5&lt;br /&gt;
&lt;br /&gt;
This imperfect setup is a common starting point. It starts off at 375w of power in the morning, builds up to 500w at zenith (noon) then back to 375. This is due to the fact that solars rotate through only 150 degrees of elevation and that this setup&#039;s math is correct only if they rotated through all 180 degrees of solar angle.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]]&lt;br /&gt;
* 2 [[Kit (Logic I/O)]]&lt;br /&gt;
* 1 [[Kit (Logic Memory)]]&lt;br /&gt;
* 1 [[Kit (Logic Processor)]] (&amp;quot;Math Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
[[File:Evie&#039;s Solar Circuit Setup.jpg|none|Solar Setup Diagram]]&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* The [[Daylight Sensor]] MUST be facing West (sunrise), but its rotation doesn&#039;t matter.&lt;br /&gt;
* Solar panels should be rotated such as that 0% VERTICAL rotation faces west/sunrise, and 100% VERTICAL faces east/sunset. &lt;br /&gt;
* The [[Area Power Control]] is necessary for the circuit to stay powered during the night. It also hides all the modules from the rest of your system.&lt;br /&gt;
* Importantly, the solar input power doesn&#039;t directly connect to any of the logic writers. This not only ensures your system doesn&#039;t lose power but also prevents short-circuiting that would burn cables.&lt;br /&gt;
* Using 1.7 instead of 1.8 reduces the average error of this design to 6.5° and increases overall power generation, particularly in the afternoon.&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2311</id>
		<title>Solar Logic Circuits Guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2311"/>
		<updated>2018-01-01T20:28:08Z</updated>

		<summary type="html">&lt;p&gt;Tofof: /* Design */ think it might be better below&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
&lt;br /&gt;
Due to the frequency of game updates, all solutions are subject to change and may or may not be functional.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Accurate Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Authors:&#039;&#039;&#039; Wooodiii, Corvus_bkgk, Enfantcool, Baksch&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Accurate (average error 1.3°), Auto-reset (variant), Power conserving (variant)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 10-12&lt;br /&gt;
&lt;br /&gt;
This setup is accurate, giving 495-500W throughout the day, with lower output only when the sun is lower than the panels can physically aim at. &lt;br /&gt;
&lt;br /&gt;
This setup adjusts for the fact that solar panels rotate through only 150 degrees. Instead of converting using 180/100, this setup converts by doing 150/100. It then clips the value at the edges, where the prior calculation would give elevations that are negative or greater than 100 (representing the fact that we would prefer the panel to track past 0 or 100, aiming all the way down to the horizon instead of stopping 15° short). The listed average error is nonzero only because of this completely unavoidable portion; the error is 0 throughout the 15°-165° portion of the day.&lt;br /&gt;
&lt;br /&gt;
=== Design ===&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]] (&amp;quot;Daylight Sensor&amp;quot;)&lt;br /&gt;
* 2 [[Kit (Logic I/O)]] (1 &amp;quot;Logic Reader&amp;quot;, 1 &amp;quot;Batch Writer&amp;quot;)&lt;br /&gt;
* 3 [[Kit (Logic Memory)]]&lt;br /&gt;
* 4 [[Kit (Logic Processor)]] (2 &amp;quot;Math Unit&amp;quot;, 2 &amp;quot;Min/Max Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* The [[Daylight Sensor]] should face the sunrise.&lt;br /&gt;
* Solar panels should be rotated such that 0% vertical faces the sunrise.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (A) || Daylight sensor, Angle || Sun&#039;s angle above the horizon&lt;br /&gt;
|-&lt;br /&gt;
| Memory (15) || 15 || True angle of solar panels at 0 elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (1.5) || 1.5 || 150/100, the conversion constant from solar angle (range:15-165, i.e. 150) to panel elevation (range:0-100)&lt;br /&gt;
|-&lt;br /&gt;
| Compare Unit (B) || min(A,15) || Adjustment amount&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (C) || A-B || Adjusted solar angle (low edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (D) || C/1.5 || Conversion to panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (100) || 100 || Maximum panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Compare Unit (E) || min(D,100) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Batch Writer || E -&amp;gt; Solar panels, Vertical || Maximum panel elevation&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:Accurate Solar Control.png]]&lt;br /&gt;
&lt;br /&gt;
=== Auto-Reset Variant ===&lt;br /&gt;
For panels that automatically reset their facing upon sunset, use two more components, and adjust the final compare unit:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || 1 while daytime, 0 while nighttime&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (F)  || 100*L || Maximum panel elevation, now 100 during day and 0 at night&lt;br /&gt;
|-&lt;br /&gt;
| (from above) Compare Unit (E) || min(D,&#039;&#039;&#039;F&#039;&#039;&#039;) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Power-Conserving Variant ===&lt;br /&gt;
To conserve power, it&#039;s possible to avoid running the entire circuit at night. A transformer can be controlled to power the main logic network above. In this way, only the two new components need to remain powered at all times.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || As in the auto-reset variant above&lt;br /&gt;
|-&lt;br /&gt;
| Logic Writer || L -&amp;gt; Transformer, On  || Transformer powers main logic network&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Easy/Compact Solar Setup ==&lt;br /&gt;
&#039;&#039;&#039;Author:&#039;&#039;&#039; Evie&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Stationeers Version:&#039;&#039;&#039; 0.1.1068.5451&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Simple, Inaccurate (Average error: 7.5°)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 5&lt;br /&gt;
&lt;br /&gt;
This imperfect setup is a common starting point. It starts off at 375w of power in the morning, builds up to 500w at zenith (noon) then back to 375. This is due to the fact that solars rotate through only 150 degrees of elevation and that this setup&#039;s math is correct only if they rotated through all 180 degrees of solar angle.&lt;br /&gt;
&lt;br /&gt;
==== Design ====&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]]&lt;br /&gt;
* 2 [[Kit (Logic I/O)]]&lt;br /&gt;
* 1 [[Kit (Logic Memory)]]&lt;br /&gt;
* 1 [[Kit (Logic Processor)]] (&amp;quot;Math Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
[[File:Evie&#039;s Solar Circuit Setup.jpg|none|Solar Setup Diagram]]&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
* The [[Daylight Sensor]] MUST be facing West (sunrise), but its rotation doesn&#039;t matter.&lt;br /&gt;
* Solar panels should be rotated such as that 0% VERTICAL rotation faces west/sunrise, and 100% VERTICAL faces east/sunset. &lt;br /&gt;
* The [[Area Power Control]] is necessary for the circuit to stay powered during the night. It also hides all the modules from the rest of your system.&lt;br /&gt;
* Importantly, the solar input power doesn&#039;t directly connect to any of the logic writers. This not only ensures your system doesn&#039;t lose power but also prevents short-circuiting that would burn cables.&lt;br /&gt;
* Using 1.7 instead of 1.8 reduces the average error of this design to 6.5° and increases overall power generation, particularly in the afternoon.&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Kit_(Lights)&amp;diff=2306</id>
		<title>Kit (Lights)</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Kit_(Lights)&amp;diff=2306"/>
		<updated>2018-01-01T19:03:48Z</updated>

		<summary type="html">&lt;p&gt;Tofof: /* Modes/Colors */ now it&amp;#039;s not mode anymore in v0.1.1089.5513&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Kit (Lights)&lt;br /&gt;
 | image       = [[File:{{#setmainimage:ItemWallLight.png}}]]&lt;br /&gt;
 | stacks = Yes&lt;br /&gt;
 | constructs  = Wall Light, LED&lt;br /&gt;
 | createdwith = [[Autolathe]], [[Electronics Printer]], [[Fabricator]]&lt;br /&gt;
 | cost        = 1g [[Iron]], 2g [[Copper]],  1g [[silicon_Ingot|Silicon]]* &amp;lt;small&amp;gt;*autolathe only&amp;lt;/small&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name = Wall Light&lt;br /&gt;
 | image      = [[File:{{#setmainimage:ItemWallLight.png}}]]&lt;br /&gt;
 | placement  = Small Grid, On Frames&lt;br /&gt;
 | powerusage = 50W&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name        = LED&lt;br /&gt;
 | image       =  [[File:{{#setmainimage:ItemLED.png}}]]&lt;br /&gt;
 | placement  = Small Grid, On Frames&lt;br /&gt;
 | powerusage = 25W&lt;br /&gt;
}}&lt;br /&gt;
__TOC__&lt;br /&gt;
== Description == &amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
Light kits are used for illuminating your base. The LED variant consumes half the power of the default larger wall light.&lt;br /&gt;
&lt;br /&gt;
== Colors ==&lt;br /&gt;
When installed as an LED, the light&#039;s color can be changed. &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Value !! Color&lt;br /&gt;
|-&lt;br /&gt;
| 0 || Blue&lt;br /&gt;
|-&lt;br /&gt;
| 1 || White&lt;br /&gt;
|-&lt;br /&gt;
| 2 || Green&lt;br /&gt;
|-&lt;br /&gt;
| 3 || Amber&lt;br /&gt;
|-&lt;br /&gt;
| 4 || Red&lt;br /&gt;
|-&lt;br /&gt;
| 5 || Yellow&lt;br /&gt;
|-&lt;br /&gt;
| 6 || Gray&lt;br /&gt;
|-&lt;br /&gt;
| 7 || Black&lt;br /&gt;
|-&lt;br /&gt;
| 8 || Orange&lt;br /&gt;
|-&lt;br /&gt;
| 9 || Lime&lt;br /&gt;
|-&lt;br /&gt;
| 10 || Magenta&lt;br /&gt;
|-&lt;br /&gt;
| 11 || Purple&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The difference between amber and yellow is subtle. The difference between gray and white is subtler still.&lt;br /&gt;
&lt;br /&gt;
== Known Bugs == &lt;br /&gt;
Prior to version 0.1.1082.5494, white LEDs may turn blue on server restart -- presumably related to blue being the first (0-indexed) color. One workaround is to set them to gray, which seems to prevent the issue while keeping the appearance of white lights. Alternatively, an always-on batch writer will override them from defaulting to blue.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2305</id>
		<title>Solar Logic Circuits Guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2305"/>
		<updated>2018-01-01T18:43:38Z</updated>

		<summary type="html">&lt;p&gt;Tofof: miscalculation of error fixed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
&lt;br /&gt;
Due to the frequency of game updates, all solutions are subject to change and may or may not be functional.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
= Accurate Solar Setup =&lt;br /&gt;
&#039;&#039;&#039;Authors:&#039;&#039;&#039; Wooodiii, Corvus_bkgk, Enfantcool, Baksch&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Accurate (average error 1.3°), Auto-reset (variant), Power conserving (variant)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 10-12&lt;br /&gt;
&lt;br /&gt;
This setup is accurate, giving 495-500W throughout the day, with lower output only when the sun is lower than the panels can physically aim at. &lt;br /&gt;
&lt;br /&gt;
This setup adjusts for the fact that solar panels rotate through only 150 degrees. Instead of converting using 180/100, this setup converts by doing 150/100. It then clips the value at the edges, where the prior calculation would give elevations that are negative or greater than 100 (representing the fact that we would prefer the panel to track past 0 or 100, aiming all the way down to the horizon instead of stopping 15° short). The listed average error is nonzero only because of this completely unavoidable portion; the error is 0 throughout the 15°-165° portion of the day.&lt;br /&gt;
&lt;br /&gt;
==== Design ====&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]] (&amp;quot;Daylight Sensor&amp;quot;)&lt;br /&gt;
* 2 [[Kit (Logic I/O)]] (1 &amp;quot;Logic Reader&amp;quot;, 1 &amp;quot;Batch Writer&amp;quot;)&lt;br /&gt;
* 3 [[Kit (Logic Memory)]]&lt;br /&gt;
* 4 [[Kit (Logic Processor)]] (2 &amp;quot;Math Unit&amp;quot;, 2 &amp;quot;Compare Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* The [[Daylight Sensor]] should face the sunrise.&lt;br /&gt;
* Solar panels should be rotated such that 0% vertical faces the sunrise.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (A) || Daylight sensor, Angle || Sun&#039;s angle above the horizon&lt;br /&gt;
|-&lt;br /&gt;
| Memory (15) || 15 || True angle of solar panels at 0 elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (1.5) || 1.5 || 150/100, the conversion constant from solar angle (range:15-165, i.e. 150) to panel elevation (range:0-100)&lt;br /&gt;
|-&lt;br /&gt;
| Compare Unit (B) || min(A,15) || Adjustment amount&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (C) || A-B || Adjusted solar angle (low edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (D) || C/1.5 || Conversion to panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (100) || 100 || Maximum panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Compare Unit (E) || min(D,100) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Batch Writer || E -&amp;gt; Solar panels, Vertical || Maximum panel elevation&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Auto-Reset Variant ====&lt;br /&gt;
For panels that automatically reset their facing upon sunset, use two more components, and adjust the final compare unit:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || 1 while daytime, 0 while nighttime&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (F)  || 100*L || Maximum panel elevation, now 100 during day and 0 at night&lt;br /&gt;
|-&lt;br /&gt;
| (from above) Compare Unit (E) || min(D,&#039;&#039;&#039;F&#039;&#039;&#039;) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Power-Conserving Variant ====&lt;br /&gt;
To conserve power, it&#039;s possible to avoid running the entire circuit at night. A transformer can be controlled to power the main logic network above. In this way, only the two new components need to remain powered at all times.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || As in the auto-reset variant above&lt;br /&gt;
|-&lt;br /&gt;
| Logic Writer || L -&amp;gt; Transformer, On  || Transformer powers main logic network&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
= Compact Solar Setup = &lt;br /&gt;
&#039;&#039;&#039;Author:&#039;&#039;&#039; Evie&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Stationeers Version:&#039;&#039;&#039; 0.1.1068.5451&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Simple, Inaccurate (Average error: 7.5°)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 5&lt;br /&gt;
&lt;br /&gt;
This imperfect setup is a common starting point. It starts off at 375w of power in the morning, builds up to 500w at zenith (noon) then back to 375. This is due to the fact that solars rotate through only 150 degrees of elevation and that this setup&#039;s math is correct only if they rotated through all 180 degrees of solar angle.&lt;br /&gt;
&lt;br /&gt;
This setup minimizes its number of components, but is not even the most accurate 5-component setup. For example, simply using 1.7 instead of 1.8 reduces the average error of this design to 6.5° and increases overall power generation, particularly in the afternoon.&lt;br /&gt;
&lt;br /&gt;
==== Design ====&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]]&lt;br /&gt;
* 2 [[Kit (Logic I/O)]]&lt;br /&gt;
* 1 [[Kit (Logic Memory)]]&lt;br /&gt;
* 1 [[Kit (Logic Processor)]] (&amp;quot;Math Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
[[File:Evie&#039;s Solar Circuit Setup.jpg|none|Solar Setup Diagram]]&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
* The [[Daylight Sensor]] MUST be facing West (sunrise), but its rotation doesn&#039;t matter.&lt;br /&gt;
* Solar panels should be rotated such as that 0% VERTICAL rotation faces west/sunrise, and 100% VERTICAL faces east/sunset. &lt;br /&gt;
* The [[Area Power Control]] is necessary for the circuit to stay powered during the night. It also hides all the modules from the rest of your system.&lt;br /&gt;
* Importantly, the solar input power doesn&#039;t directly connect to any of the logic writers. This not only ensures your system doesn&#039;t lose power but also prevents short-circuiting that would burn cables.&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2296</id>
		<title>Solar Logic Circuits Guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2296"/>
		<updated>2018-01-01T07:05:38Z</updated>

		<summary type="html">&lt;p&gt;Tofof: language cleanup&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
&lt;br /&gt;
Due to the frequency of game updates, all solutions are subject to change and may or may not be functional.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
= Accurate Solar Setup =&lt;br /&gt;
&#039;&#039;&#039;Authors:&#039;&#039;&#039; Wooodiii, Corvus_bkgk, Enfantcool, Baksch&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Accurate (average error 1.3°), Auto-reset (variant), Power conserving (variant)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 10-12&lt;br /&gt;
&lt;br /&gt;
This setup is accurate, giving 495-500W throughout the day, with lower output only when the sun is lower than the panels can physically aim at. &lt;br /&gt;
&lt;br /&gt;
This setup adjusts for the fact that solar panels rotate through only 150 degrees. Instead of converting using 180/100, this setup converts by doing 150/100. It then clips the value at the edges, where the prior calculation would give elevations that are negative or greater than 100 (representing the fact that we would prefer the panel to track past 0 or 100, aiming all the way down to the horizon instead of stopping 15° short). The listed average error is nonzero only because of this completely unavoidable portion; the error is 0 throughout the 15°-165° portion of the day.&lt;br /&gt;
&lt;br /&gt;
==== Design ====&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]] (&amp;quot;Daylight Sensor&amp;quot;)&lt;br /&gt;
* 2 [[Kit (Logic I/O)]] (1 &amp;quot;Logic Reader&amp;quot;, 1 &amp;quot;Batch Writer&amp;quot;)&lt;br /&gt;
* 3 [[Kit (Logic Memory)]]&lt;br /&gt;
* 4 [[Kit (Logic Processor)]] (2 &amp;quot;Math Unit&amp;quot;, 2 &amp;quot;Compare Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* The [[Daylight Sensor]] should face the sunrise.&lt;br /&gt;
* Solar panels should be rotated such that 0% vertical faces the sunrise.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (A) || Daylight sensor, Angle || Sun&#039;s angle above the horizon&lt;br /&gt;
|-&lt;br /&gt;
| Memory (15) || 15 || True angle of solar panels at 0 elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (1.5) || 1.5 || 150/100, the conversion constant from solar angle (range:15-165, i.e. 150) to panel elevation (range:0-100)&lt;br /&gt;
|-&lt;br /&gt;
| Compare Unit (B) || min(A,15) || Adjustment amount&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (C) || A-B || Adjusted solar angle (low edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (D) || C/1.5 || Conversion to panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (100) || 100 || Maximum panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Compare Unit (E) || min(D,100) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Batch Writer || E -&amp;gt; Solar panels, Vertical || Maximum panel elevation&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Auto-Reset Variant ====&lt;br /&gt;
For panels that automatically reset their facing upon sunset, use two more components, and adjust the final compare unit:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || 1 while daytime, 0 while nighttime&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (F)  || 100*L || Maximum panel elevation, now 100 during day and 0 at night&lt;br /&gt;
|-&lt;br /&gt;
| (from above) Compare Unit (E) || min(D,&#039;&#039;&#039;F&#039;&#039;&#039;) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Power-Conserving Variant ====&lt;br /&gt;
To conserve power, it&#039;s possible to avoid running the entire circuit at night. A transformer can be controlled to power the main logic network above. In this way, only the two new components need to remain powered at all times.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || As in the auto-reset variant above&lt;br /&gt;
|-&lt;br /&gt;
| Logic Writer || L -&amp;gt; Transformer, On  || Transformer powers main logic network&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
= Compact Solar Setup = &lt;br /&gt;
&#039;&#039;&#039;Author:&#039;&#039;&#039; Evie&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Stationeers Version:&#039;&#039;&#039; 0.1.1068.5451&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Simple, Inaccurate (Average error: 7.5°)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 5&lt;br /&gt;
&lt;br /&gt;
This imperfect setup is a common starting point. It starts off at 375w of power in the morning, builds up to 500w at zenith (noon) then back to 375. This is due to the fact that solars rotate through only 150 degrees of elevation and that this setup&#039;s math is correct only if they rotated through all 180 degrees of solar angle.&lt;br /&gt;
&lt;br /&gt;
This setup minimizes its number of components, but is not even the most accurate 5-component setup. For example, simply using 1.7 instead of 1.8 reduces the average error of this design to 6.2° and increases power generation.&lt;br /&gt;
&lt;br /&gt;
==== Design ====&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]]&lt;br /&gt;
* 2 [[Kit (Logic I/O)]]&lt;br /&gt;
* 1 [[Kit (Logic Memory)]]&lt;br /&gt;
* 1 [[Kit (Logic Processor)]] (&amp;quot;Math Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
[[File:Evie&#039;s Solar Circuit Setup.jpg|none|Solar Setup Diagram]]&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
* The [[Daylight Sensor]] MUST be facing West (sunrise), but its rotation doesn&#039;t matter.&lt;br /&gt;
* Solar panels should be rotated such as that 0% VERTICAL rotation faces west/sunrise, and 100% VERTICAL faces east/sunset. &lt;br /&gt;
* The [[Area Power Control]] is necessary for the circuit to stay powered during the night. It also hides all the modules from the rest of your system.&lt;br /&gt;
* Importantly, the solar input power doesn&#039;t directly connect to any of the logic writers. This not only ensures your system doesn&#039;t lose power but also prevents short-circuiting that would burn cables.&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2295</id>
		<title>Solar Logic Circuits Guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Solar_Logic_Circuits_Guide&amp;diff=2295"/>
		<updated>2018-01-01T07:02:59Z</updated>

		<summary type="html">&lt;p&gt;Tofof: Accurate solar setup, adjusted format of entries, added summary properties&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
&lt;br /&gt;
Due to the frequency of game updates, all solutions are subject to change and may or may not be functional.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
= Accurate Solar Setup =&lt;br /&gt;
&#039;&#039;&#039;Authors:&#039;&#039;&#039; Wooodiii, Corvus_bkgk, Enfantcool, Baksch&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Accurate (average error 1.3°), Auto-reset (variant), Power conserving (variant)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 10-12&lt;br /&gt;
&lt;br /&gt;
This setup is accurate, giving 495-500W throughout the day, with lower output only when the sun is lower than the panels can physically aim at. &lt;br /&gt;
&lt;br /&gt;
This setup adjusts for the fact that solar panels rotate through only 150 degrees. Instead of converting using 180/100, this setup converts by doing 150/100. It then clips the value at the edges, where the prior calculation would give elevations that are negative or greater than 100 (representing the fact that we would prefer the panel to track past 0 or 100, aiming all the way down to the horizon instead of stopping 15° short). The listed average error is nonzero only because of this completely unavoidable error; the error is 0 throughout the 15°-165° portion of the day.&lt;br /&gt;
&lt;br /&gt;
==== Design ====&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]] (&amp;quot;Daylight Sensor&amp;quot;)&lt;br /&gt;
* 2 [[Kit (Logic I/O)]] (1 &amp;quot;Logic Reader&amp;quot;, 1 &amp;quot;Batch Writer&amp;quot;)&lt;br /&gt;
* 3 [[Kit (Logic Memory)]]&lt;br /&gt;
* 4 [[Kit (Logic Processor)]] (2 &amp;quot;Math Unit&amp;quot;, 2 &amp;quot;Compare Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* The [[Daylight Sensor]] should face the sunrise.&lt;br /&gt;
* Solar panels should be rotated such that 0% vertical faces the sunrise.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (A) || Daylight sensor, Angle || Sun&#039;s angle above the horizon&lt;br /&gt;
|-&lt;br /&gt;
| Memory (15) || 15 || True angle of solar panels at 0 elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (1.5) || 1.5 || 150/100, the conversion constant from solar angle (range:15-165, i.e. 150) to panel elevation (range:0-100)&lt;br /&gt;
|-&lt;br /&gt;
| Compare Unit (B) || min(A,15) || Adjustment amount&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (C) || A-B || Adjusted solar angle (low edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (D) || C/1.5 || Conversion to panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Memory (100) || 100 || Maximum panel elevation&lt;br /&gt;
|-&lt;br /&gt;
| Compare Unit (E) || min(D,100) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|-&lt;br /&gt;
| Batch Writer || E -&amp;gt; Solar panels, Vertical || Maximum panel elevation&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Auto-Reset Variant ====&lt;br /&gt;
For panels that automatically reset their facing upon sunset, use two more components, and adjust the final compare unit:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || 1 while daytime, 0 while nighttime&lt;br /&gt;
|-&lt;br /&gt;
| Math Unit (F)  || 100*L || Maximum panel elevation, now 100 during day and 0 at night&lt;br /&gt;
|-&lt;br /&gt;
| (from above) Compare Unit (E) || min(D,&#039;&#039;&#039;F&#039;&#039;&#039;) || Adjusted panel elevation (high edge adjustment)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Power-Conserving Variant ====&lt;br /&gt;
To conserve power, it&#039;s possible to avoid running the entire circuit at night. A transformer can be controlled to power the main logic network above. In this way, only the two new components need to remain powered at all times.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Component (Name) !! Settings !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Logic Reader (L) || Daylight sensor, Activation || As in the auto-reset variant above&lt;br /&gt;
|-&lt;br /&gt;
| Logic Writer || L -&amp;gt; Transformer, On  || Transformer powers main logic network&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
= Compact Solar Setup = &lt;br /&gt;
&#039;&#039;&#039;Author:&#039;&#039;&#039; Evie&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Stationeers Version:&#039;&#039;&#039; 0.1.1068.5451&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Properties:&#039;&#039;&#039; Simple, Inaccurate (Average error: 7.5°)&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Number of Components:&#039;&#039;&#039; 5&lt;br /&gt;
&lt;br /&gt;
This imperfect setup is a common starting point. It starts off at 375w of power in the morning, builds up to 500w at zenith (noon) then back to 375. This is due to the fact that solars rotate through only 150 degrees of elevation and that this setup&#039;s math is correct only if they rotated through all 180 degrees of solar angle.&lt;br /&gt;
&lt;br /&gt;
This setup minimizes its number of components, but is not even the most accurate 5-component setup. For example, simply using 1.7 instead of 1.8 reduces the average error of this design to 6.2° and increases power generation.&lt;br /&gt;
&lt;br /&gt;
==== Design ====&lt;br /&gt;
* 1 [[Construction Kit (Sensors)]]&lt;br /&gt;
* 2 [[Kit (Logic I/O)]]&lt;br /&gt;
* 1 [[Kit (Logic Memory)]]&lt;br /&gt;
* 1 [[Kit (Logic Processor)]] (&amp;quot;Math Unit&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
[[File:Evie&#039;s Solar Circuit Setup.jpg|none|Solar Setup Diagram]]&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
* The [[Daylight Sensor]] MUST be facing West (sunrise), but its rotation doesn&#039;t matter.&lt;br /&gt;
* Solar panels should be rotated such as that 0% VERTICAL rotation faces west/sunrise, and 100% VERTICAL faces east/sunset. &lt;br /&gt;
* The [[Area Power Control]] is necessary for the circuit to stay powered during the night. It also hides all the modules from the rest of your system.&lt;br /&gt;
* Importantly, the solar input power doesn&#039;t directly connect to any of the logic writers. This not only ensures your system doesn&#039;t lose power but also prevents short-circuiting that would burn cables.&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Kit_(Lights)&amp;diff=2248</id>
		<title>Kit (Lights)</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Kit_(Lights)&amp;diff=2248"/>
		<updated>2017-12-29T16:28:09Z</updated>

		<summary type="html">&lt;p&gt;Tofof: item was renamed in 0.1.1082.5494&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Kit (Lights)&lt;br /&gt;
 | image       = [[File:{{#setmainimage:ItemWallLight.png}}]]&lt;br /&gt;
 | stacks = Yes&lt;br /&gt;
 | constructs  = Wall Light, LED&lt;br /&gt;
 | createdwith = [[Autolathe]], [[Electronics Printer]], [[Fabricator]]&lt;br /&gt;
 | cost        = 1g [[Iron]], 2g [[Copper]],  1g [[silicon_Ingot|Silicon]]* &amp;lt;small&amp;gt;*autolathe only&amp;lt;/small&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name = Wall Light&lt;br /&gt;
 | image      = [[File:{{#setmainimage:ItemWallLight.png}}]]&lt;br /&gt;
 | placement  = Small Grid, On Frames&lt;br /&gt;
 | powerusage = 50W&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name        = LED&lt;br /&gt;
 | image       =  [[File:{{#setmainimage:ItemLED.png}}]]&lt;br /&gt;
 | placement  = Small Grid, On Frames&lt;br /&gt;
 | powerusage = 25W&lt;br /&gt;
}}&lt;br /&gt;
__TOC__&lt;br /&gt;
== Description == &amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
Light kits are used for illuminating your base. The LED variant consumes half the power of the default larger wall light.&lt;br /&gt;
&lt;br /&gt;
== Modes/Colors ==&lt;br /&gt;
When installed as an LED, the light&#039;s color can be changed by writing to its &#039;mode&#039;. &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Mode !! Color&lt;br /&gt;
|-&lt;br /&gt;
| 0 || Blue&lt;br /&gt;
|-&lt;br /&gt;
| 1 || White&lt;br /&gt;
|-&lt;br /&gt;
| 2 || Green&lt;br /&gt;
|-&lt;br /&gt;
| 3 || Amber&lt;br /&gt;
|-&lt;br /&gt;
| 4 || Red&lt;br /&gt;
|-&lt;br /&gt;
| 5 || Yellow&lt;br /&gt;
|-&lt;br /&gt;
| 6 || Gray&lt;br /&gt;
|-&lt;br /&gt;
| 7 || Black&lt;br /&gt;
|-&lt;br /&gt;
| 8 || Orange&lt;br /&gt;
|-&lt;br /&gt;
| 9 || Lime&lt;br /&gt;
|-&lt;br /&gt;
| 10 || Magenta&lt;br /&gt;
|-&lt;br /&gt;
| 11 || Purple&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The difference between amber and yellow is subtle. The difference between gray and white is subtler still. &lt;br /&gt;
&lt;br /&gt;
== Known Bugs == &lt;br /&gt;
Prior to version 0.1.1082.5494, white LEDs may turn blue on server restart -- presumably related to blue being the first (0-indexed) color. One workaround is to set them to gray, which seems to prevent the issue while keeping the appearance of white lights. Alternatively, an always-on batch writer will override them from defaulting to blue.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Wall_Light&amp;diff=2247</id>
		<title>Wall Light</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Wall_Light&amp;diff=2247"/>
		<updated>2017-12-29T16:26:45Z</updated>

		<summary type="html">&lt;p&gt;Tofof: Tofof moved page Wall Light to Kit (Lights): renamed in 0.1.1082.5494&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Kit (Lights)]]&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Kit_(Lights)&amp;diff=2246</id>
		<title>Kit (Lights)</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Kit_(Lights)&amp;diff=2246"/>
		<updated>2017-12-29T16:26:43Z</updated>

		<summary type="html">&lt;p&gt;Tofof: Tofof moved page Wall Light to Kit (Lights): renamed in 0.1.1082.5494&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Wall Light&lt;br /&gt;
 | image      = [[File:{{#setmainimage:ItemWallLight.png}}]]&lt;br /&gt;
 | stacks = Yes&lt;br /&gt;
 | constructs  = Wall Light, LED&lt;br /&gt;
 | createdwith = [[Autolathe]], [[Electronics Printer]], [[Fabricator]]&lt;br /&gt;
 | cost        = 1g [[Iron]], 2g [[Copper]],  1g [[silicon_Ingot|Silicon]]* &amp;lt;small&amp;gt;*autolathe only&amp;lt;/small&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name = Wall Light&lt;br /&gt;
 | image      = [[File:{{#setmainimage:ItemWallLight.png}}]]&lt;br /&gt;
 | placement  = Small Grid, On Frames&lt;br /&gt;
 | powerusage = 50W&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name        = LED&lt;br /&gt;
 | image       =  [[File:{{#setmainimage:ItemLED.png}}]]&lt;br /&gt;
 | placement  = Small Grid, On Frames&lt;br /&gt;
 | powerusage = 25W&lt;br /&gt;
}}&lt;br /&gt;
__TOC__&lt;br /&gt;
== Description == &amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
Wall lights are used for illuminating your base. The LED variant consumes half the power of the larger default variant. &lt;br /&gt;
&lt;br /&gt;
== Modes/Colors ==&lt;br /&gt;
When installed as an LED, the light&#039;s color can be changed by writing to its &#039;mode&#039;. &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Mode !! Color&lt;br /&gt;
|-&lt;br /&gt;
| 0 || Blue&lt;br /&gt;
|-&lt;br /&gt;
| 1 || White&lt;br /&gt;
|-&lt;br /&gt;
| 2 || Green&lt;br /&gt;
|-&lt;br /&gt;
| 3 || Amber&lt;br /&gt;
|-&lt;br /&gt;
| 4 || Red&lt;br /&gt;
|-&lt;br /&gt;
| 5 || Yellow&lt;br /&gt;
|-&lt;br /&gt;
| 6 || Gray&lt;br /&gt;
|-&lt;br /&gt;
| 7 || Black&lt;br /&gt;
|-&lt;br /&gt;
| 8 || Orange&lt;br /&gt;
|-&lt;br /&gt;
| 9 || Lime&lt;br /&gt;
|-&lt;br /&gt;
| 10 || Magenta&lt;br /&gt;
|-&lt;br /&gt;
| 11 || Purple&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The difference between amber and yellow is subtle. The difference between gray and white is subtler still. &lt;br /&gt;
&lt;br /&gt;
== Known Bugs == &lt;br /&gt;
Prior to version 0.1.1082.5494, white LEDs may turn blue on server restart -- presumably related to blue being the first (0-indexed) color. One workaround is to set them to gray, which seems to prevent the issue while keeping the appearance of white lights. Alternatively, an always-on batch writer will override them from defaulting to blue.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Kit_(Lights)&amp;diff=2233</id>
		<title>Kit (Lights)</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Kit_(Lights)&amp;diff=2233"/>
		<updated>2017-12-29T03:04:02Z</updated>

		<summary type="html">&lt;p&gt;Tofof: toc&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Wall Light&lt;br /&gt;
 | image      = [[File:{{#setmainimage:ItemWallLight.png}}]]&lt;br /&gt;
 | stacks = Yes&lt;br /&gt;
 | constructs  = Wall Light, LED&lt;br /&gt;
 | createdwith = [[Autolathe]], [[Electronics Printer]], [[Fabricator]]&lt;br /&gt;
 | cost        = 1g [[Iron]], 2g [[Copper]],  1g [[silicon_Ingot|Silicon]]* &amp;lt;small&amp;gt;*autolathe only&amp;lt;/small&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name = Wall Light&lt;br /&gt;
 | image      = [[File:{{#setmainimage:ItemWallLight.png}}]]&lt;br /&gt;
 | placement  = Small Grid, On Frames&lt;br /&gt;
 | powerusage = 50W&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name        = LED&lt;br /&gt;
 | image       =  [[File:{{#setmainimage:ItemLED.png}}]]&lt;br /&gt;
 | placement  = Small Grid, On Frames&lt;br /&gt;
 | powerusage = 25W&lt;br /&gt;
}}&lt;br /&gt;
__TOC__&lt;br /&gt;
== Description == &amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
Wall lights are used for illuminating your base. The LED variant consumes half the power of the larger default variant. &lt;br /&gt;
&lt;br /&gt;
== Modes/Colors ==&lt;br /&gt;
When installed as an LED, the light&#039;s color can be changed by writing to its &#039;mode&#039;. &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Mode !! Color&lt;br /&gt;
|-&lt;br /&gt;
| 0 || Blue&lt;br /&gt;
|-&lt;br /&gt;
| 1 || White&lt;br /&gt;
|-&lt;br /&gt;
| 2 || Green&lt;br /&gt;
|-&lt;br /&gt;
| 3 || Amber&lt;br /&gt;
|-&lt;br /&gt;
| 4 || Red&lt;br /&gt;
|-&lt;br /&gt;
| 5 || Yellow&lt;br /&gt;
|-&lt;br /&gt;
| 6 || Gray&lt;br /&gt;
|-&lt;br /&gt;
| 7 || Black&lt;br /&gt;
|-&lt;br /&gt;
| 8 || Orange&lt;br /&gt;
|-&lt;br /&gt;
| 9 || Lime&lt;br /&gt;
|-&lt;br /&gt;
| 10 || Magenta&lt;br /&gt;
|-&lt;br /&gt;
| 11 || Purple&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The difference between amber and yellow is subtle. The difference between gray and white is subtler still. &lt;br /&gt;
&lt;br /&gt;
== Known Bugs == &lt;br /&gt;
White LEDs may turn blue on server restart -- presumably related to blue being the first (0-indexed) color. One workaround is to set them to gray, which seems to prevent the issue while keeping the appearance of white lights. Alternatively, an always-on batch writer will override them from defaulting to blue.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Kit_(Lights)&amp;diff=2232</id>
		<title>Kit (Lights)</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Kit_(Lights)&amp;diff=2232"/>
		<updated>2017-12-29T03:00:39Z</updated>

		<summary type="html">&lt;p&gt;Tofof: colors! and bugs and formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Itembox&lt;br /&gt;
 | name        = Wall Light&lt;br /&gt;
 | image      = [[File:{{#setmainimage:ItemWallLight.png}}]]&lt;br /&gt;
 | stacks = Yes&lt;br /&gt;
 | constructs  = Wall Light, LED&lt;br /&gt;
 | createdwith = [[Autolathe]], [[Electronics Printer]], [[Fabricator]]&lt;br /&gt;
 | cost        = 1g [[Iron]], 2g [[Copper]],  1g [[silicon_Ingot|Silicon]]* &amp;lt;small&amp;gt;*autolathe only&amp;lt;/small&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name = Wall Light&lt;br /&gt;
 | image      = [[File:{{#setmainimage:ItemWallLight.png}}]]&lt;br /&gt;
 | placement  = Small Grid, On Frames&lt;br /&gt;
 | powerusage = 50W&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name        = LED&lt;br /&gt;
 | image       =  [[File:{{#setmainimage:ItemLED.png}}]]&lt;br /&gt;
 | placement  = Small Grid, On Frames&lt;br /&gt;
 | powerusage = 25W&lt;br /&gt;
}}&lt;br /&gt;
== Description == &amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
Wall lights are used for illuminating your base. The LED variant consumes half the power of the larger default variant. &lt;br /&gt;
&lt;br /&gt;
=== Modes/Colors === &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
When installed as an LED, the light&#039;s color can be changed by writing to its &#039;mode&#039;. &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Mode !! Color&lt;br /&gt;
|-&lt;br /&gt;
| 0 || Blue&lt;br /&gt;
|-&lt;br /&gt;
| 1 || White&lt;br /&gt;
|-&lt;br /&gt;
| 2 || Green&lt;br /&gt;
|-&lt;br /&gt;
| 3 || Amber&lt;br /&gt;
|-&lt;br /&gt;
| 4 || Red&lt;br /&gt;
|-&lt;br /&gt;
| 5 || Yellow&lt;br /&gt;
|-&lt;br /&gt;
| 6 || Gray&lt;br /&gt;
|-&lt;br /&gt;
| 7 || Black&lt;br /&gt;
|-&lt;br /&gt;
| 8 || Orange&lt;br /&gt;
|-&lt;br /&gt;
| 9 || Lime&lt;br /&gt;
|-&lt;br /&gt;
| 10 || Magenta&lt;br /&gt;
|-&lt;br /&gt;
| 11 || Purple&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The difference between amber and yellow is subtle. The difference between gray and white is subtler still. &lt;br /&gt;
&lt;br /&gt;
== Known Bugs == &lt;br /&gt;
White LEDs may turn blue on server restart -- presumably related to blue being the first (0-indexed) color. One workaround is to set them to gray, which seems to prevent the issue while keeping the appearance of white lights. Alternatively, an always-on batch writer will override them from defaulting to blue.&lt;/div&gt;</summary>
		<author><name>Tofof</name></author>
	</entry>
</feed>