radiation test -raspberry pi zero-

13
©SIProp Project, 2006-2017 1 Radiation Test –Raspberry Pi Zero- Noritsuna Imamura [email protected]

Upload: industrial-technology-research-institute-itri-

Post on 12-Apr-2017

150 views

Category:

Technology


0 download

TRANSCRIPT

Page 1: Radiation Test -Raspberry PI Zero-

1©SIProp Project, 2006-2017

Radiation Test –Raspberry Pi Zero-Noritsuna [email protected]

Page 2: Radiation Test -Raspberry PI Zero-

©SIProp Project, 2006-2017 2

PurposeTesting Total Dose for Raspberry PI Zero

Target DevicesRaspberry PI Zero: Ver.1.2MicroSD Card: TOSHIBA 8GB Class10(TOSHIBA MSDAR40N08G)

Page 3: Radiation Test -Raspberry PI Zero-

©SIProp Project, 2006-2017 3

RegulationTarget Radiation Dose

ISS(International Space Station) OrbitSSP 30512 Revision C from NASA

Heat Sink : 0.5[mm] Thickness of Aluminum Plate

8773[rad/year] = 87.73 [gray/year]Mission Period: 2.6[year]

87.73[gray/year] * 2.6[year] = 228.10 [gray]Testing Radiation Dose

Radioactivity: Cobalt-60Distance of the Radioactivity: 80[cm]Testing Date: 22/Mar/2017Irradiation Time: 5[h]

46[ray/h] * 5[h] = 230 [gray]

Page 4: Radiation Test -Raspberry PI Zero-

©SIProp Project, 2006-2017 4

Calculation TablesTable 1. SSP 30512 Revision C

Table2 . Dose Rate

Page 5: Radiation Test -Raspberry PI Zero-

©SIProp Project, 2006-2017 5

Test MethodPhase No. Task

Before Test 1 Setup Raspberry PI Zero, Consumption Current Logger, Power Supply.

2 Set Current Date on Raspberry PI Zero.3 Run the Testing Application on Raspberry

PI Zero.During Test 4 Get CPU’s Temperature & Current Time in

Every Minute.5 Create Current Time as File and Write

Current Temperature in this File. 6 Get & Save Current Consumption Current by

Logger.

Page 6: Radiation Test -Raspberry PI Zero-

©SIProp Project, 2006-2017 6

Test Application 1/2Check Targets & Reason

CPURaspberry PI Zero’s parts are a CPU & a voltage regulator only.

ClockThe clock shifts by a radioactive noise.

MicroSD CardMicroSD Card has a micro computer.NAND Flash is weak in radiation.

Page 7: Radiation Test -Raspberry PI Zero-

©SIProp Project, 2006-2017 7

Test Application 2/21. #!/usr/bin/python2. #coding:utf-83. import os4. import commands5. import datetime6. import locale

7. d = datetime.datetime.today()

8. temp = commands.getoutput("vcgencmd measure_temp").split('=')

9. date_form_body=d.strftime("%Y-%m-%d %H:%M:%S ")

10. s=date_form_body + temp[1] + '\n'

11. date_form_file=d.strftime("%Y-%m-%d_%H:%M:%S")

12. filename=date_form_file + '.log'

13. f = open(filename,'a')14. f.write(s)15. f.close()

Operations1. Get CPU’s

Temperature2. Get Current Time3. Create File by

Current Time4. Write CPU’s

Temperature & Current Time in this File.

5. Close the File6. Exit the

Application7. Run this Appli

Every Minute by cron

Page 8: Radiation Test -Raspberry PI Zero-

©SIProp Project, 2006-2017 8

Consumption Current LoggerReason

Consumption current goes up by total dose degradation.

OperationGet & Save Current Consumption Current Every 30 seconds.

Page 9: Radiation Test -Raspberry PI Zero-

©SIProp Project, 2006-2017 9

Test EnvironmentTop: Upper-Surface Figure, Lower Left: Front Figure, Lower Right: Rear Figure

Red Circle: Raspberry PI ZeroBlue Circle: Irradiation Point

Page 10: Radiation Test -Raspberry PI Zero-

©SIProp Project, 2006-2017 10

During TestThe value of radioisotope, and an inside situation

Page 11: Radiation Test -Raspberry PI Zero-

©SIProp Project, 2006-2017 11

Test Result: CPU TemperatureCheck Point Check

TargetResult Succes

s / Failure

Are the files made for every minute?

MicroSD Card

The files were created with the error for 1 second every minute.

Success

Were the files for 5 hours of test time made?

Clock Just files existed. (Last – First) timestamps = 0:02.

Success

Isn't there any inaccurate temperature data?

CPU Almost all the data was 25.0[C]. Occasional the data is 24.5[C]-26.0 [C].

Success

By the above-mentioned test result, I judged that Raspberry PI Zero passed this test.

Page 12: Radiation Test -Raspberry PI Zero-

©SIProp Project, 2006-2017 12

Test Result: Consumption Current

経過(分)-15.0 14.0 43.0 72.0 101.0 130.0 159.0 188.0 217.0 246.0 275.0 304.5 0

20

40

60

80

100

120

Irradiation Time (min, 0=Start Time, 300=End Time)

Cons

umpt

ion

Curr

ent (

mA)

By the above-mentioned test result, I judged that Raspberry PI Zero passed this test.

But Consumption Current is increasing after 230min. It will be expected that radiation breaks if it is longer time.

Page 13: Radiation Test -Raspberry PI Zero-

©SIProp Project, 2006-2017 13

Test Result: ConclusionBy these test results, I judged that Raspberry PI Zero had radiation resistivity.

It will be expected that radiation breaks if it is longer time.