Actions

Difference between revisions of "PowerTransmitter"

From Unofficial Stationeers Wiki

m
m
Line 45: Line 45:
 
*Device rotation matters. The default placement is to point the data port north (towards 0° on the compass), other directions will require adding or subtracting angles after doing the math below.
 
*Device rotation matters. The default placement is to point the data port north (towards 0° on the compass), other directions will require adding or subtracting angles after doing the math below.
 
*The coordinates of these devices will change when the head moves.
 
*The coordinates of these devices will change when the head moves.
*Both structures and terrain will block the beam.
+
*Both structures and terrain will block the beam, but once a beam is formed it will no longer be blocked by building inbetween (will a power outage break the link?).
*Storms have no effect on the power transfer.
+
*Unaffected by storms.
 
*Using two emitters on the same reciever doesn't appear to work
 
*Using two emitters on the same reciever doesn't appear to work
 
*A Logic Transmitter can mirror recievers, but not emitters.
 
*A Logic Transmitter can mirror recievers, but not emitters.
Line 75: Line 75:
 
Horizontal Hypotenuse (option 1) = delta-z / cos(Horizontal angle at "emitter" (in radians))
 
Horizontal Hypotenuse (option 1) = delta-z / cos(Horizontal angle at "emitter" (in radians))
 
<br>Horizontal Hypotenuse (option 2) = delta-x / sin(Horizontal angle at "emitter" (in radians))
 
<br>Horizontal Hypotenuse (option 2) = delta-x / sin(Horizontal angle at "emitter" (in radians))
 +
<br>Horizontal Hypotenuse (option 3) = use pythagoras theorem
 
<br>Vertical angle at "emitter" (in degrees) = 90 + atan( delta-y / Horizontal Hypotenuse ) * 180 / pi
 
<br>Vertical angle at "emitter" (in degrees) = 90 + atan( delta-y / Horizontal Hypotenuse ) * 180 / pi
 
<br>Vertical angle at "reciever" (in degrees) = 180 - Vertical angle at "emitter" (in degrees)
 
<br>Vertical angle at "reciever" (in degrees) = 180 - Vertical angle at "emitter" (in degrees)
Line 83: Line 84:
 
*The delta values are not constants, but they only change a little bit.
 
*The delta values are not constants, but they only change a little bit.
 
*When delta-z = 0, atan2( delta-x / delta-z) still works
 
*When delta-z = 0, atan2( delta-x / delta-z) still works
*When calculating the Horizontal Hypotenuse, both options gives the same value, but causes divisions by 0 at different angles.  
+
*When calculating the Horizontal Hypotenuse, both trigonometric options gives the same value, but causes divisions by 0 at different angles. The pythagoras option will remove any negative signs but atan still works fine.
 
*If you think that atan2( delta-x / delta-z ) looks flipped, it's because it is. What causes the flip are the devices themselves. When the head rotates horizontally in the positive direction they are actually rotating in what is normally considered the negative direction, and when the head points towards the data port it already has a 90° rotation.
 
*If you think that atan2( delta-x / delta-z ) looks flipped, it's because it is. What causes the flip are the devices themselves. When the head rotates horizontally in the positive direction they are actually rotating in what is normally considered the negative direction, and when the head points towards the data port it already has a 90° rotation.
  
 
</translate>
 
</translate>

Revision as of 15:17, 28 November 2021

Kit (PowerTransmitter)
Creates whats below
Stacks 10
Recipe
Created With Electronics Printer
Cost 5 Gold, 7 Copper, 3 Steel
Power Transmitter
Microwave Power Transmitter.jpg
Operation
Power Usage 10W
Construction
Placed with Kit (PowerTransmitter)
Placed on Large Grid
Stage 1
Deconstruction
Deconstructed with Hand Drill
Item received 3x Electronic Parts
Stage 2
Deconstruction
Deconstructed with Hand Drill
Item received 2x Iron Sheets
Stage 3
Deconstruction
Deconstructed with Hand Drill
Item received Kit (PowerTransmitter)
Power Receiver
Microwave Power Receiver.jpg
Operation
Power Usage 10W
Construction
Placed with Kit (PowerTransmitter)
Placed on Large Grid
Stage 1
Deconstruction
Deconstructed with Hand Drill
Item received 1x Electronic Parts
Stage 2
Deconstruction
Deconstructed with Hand Drill
Item received 2x Iron Sheets
Stage 3
Deconstruction
Deconstructed with Hand Drill
Item received Kit (PowerTransmitter)

Description

The Norsec Wireless Power Transmitter is an uni-directional, A-to B, far field microwave electical transmission system. The rotatable base transmitter delivers a narrow, non-lethal Microwave beam to a dedicated base receiver.

The transmitter must be aligned to the base station in order to transmit any power. The brightness of the transmitter's collimator arc provides an indication of transmission intensity. Note that there is an attrition over longer ranges, so the unit requrires more power over greater distances to deliver the same output.


General behaviour

  • 5kW is the maximum PowerPotential that can be transmitted, this amount is reduced by distance.
  • Device rotation matters. The default placement is to point the data port north (towards 0° on the compass), other directions will require adding or subtracting angles after doing the math below.
  • The coordinates of these devices will change when the head moves.
  • Both structures and terrain will block the beam, but once a beam is formed it will no longer be blocked by building inbetween (will a power outage break the link?).
  • Unaffected by storms.
  • Using two emitters on the same reciever doesn't appear to work
  • A Logic Transmitter can mirror recievers, but not emitters.


Range

Power transfer with 4000 W PowerPotential

98m = 3630 W (-0.37kW)
198m = 2863 W (-1.14kW)
300m = 1409 W (-2.59kW)
400m = 0 W


Power transfer with 5000 W PowerPotential

98m = 4630 W (-0.37kW)
198m = 3863 W (-1.14kW)
300m = 2409 W (-2.59kW)
400m = 651 W (-4.35kW)


Alignment formulas

All dataports points north, the delta values are calculated from: "reciever coordinate" - "emitter coordinate"

Horizontal angle at "emitter" (in radians) = atan2( delta-x / delta-z )
Horizontal angle at "emitter" (in degrees) = Horizontal angle at "emitter" (in radians) * 180 / pi
Horizontal angle at "reciever" (in degrees) = 180 + Horizontal angle at "emitter" (in degrees)

Horizontal Hypotenuse (option 1) = delta-z / cos(Horizontal angle at "emitter" (in radians))
Horizontal Hypotenuse (option 2) = delta-x / sin(Horizontal angle at "emitter" (in radians))
Horizontal Hypotenuse (option 3) = use pythagoras theorem
Vertical angle at "emitter" (in degrees) = 90 + atan( delta-y / Horizontal Hypotenuse ) * 180 / pi
Vertical angle at "reciever" (in degrees) = 180 - Vertical angle at "emitter" (in degrees)


Notes

  • The vertical calculation uses atan, the horizontal uses atan2.
  • The delta values are not constants, but they only change a little bit.
  • When delta-z = 0, atan2( delta-x / delta-z) still works
  • When calculating the Horizontal Hypotenuse, both trigonometric options gives the same value, but causes divisions by 0 at different angles. The pythagoras option will remove any negative signs but atan still works fine.
  • If you think that atan2( delta-x / delta-z ) looks flipped, it's because it is. What causes the flip are the devices themselves. When the head rotates horizontally in the positive direction they are actually rotating in what is normally considered the negative direction, and when the head points towards the data port it already has a 90° rotation.