Lunar Dust Fighters| Dust Yourself Off

Project Details

The Challenge | Dust Yourself Off

The Apollo missions showed us that lunar dust not only clung to everything and was impossible to fully remove, but it was also dangerous to humans and damaging to spacecraft systems. Your challenge is to develop a way to detect, map, and mitigate lunar dust to reduce the effects on astronauts or spacecraft interior systems.

Lunar Dust Fighters | Dust yourself off

Develop a LDS to detect, map, and mitigate lunar dust to reduce the effects on astronauts or spacecraft interior systems.

Lunar Dust Fighters

Background:
Blasted by meteor impacts to sizes even smaller than one micron, lunar dust invades and sticks in tiny spaces. Its particles are easily blasted across the lunar surface and to high altitudes by rocket engines. The dust has dielectric properties that cause it to be lifted electro-statically off the surface of the moon to inconvenient locations at inconvenient times.The threat of lunar dust to human health and spacecraft systems is driving future design and operations of those systems to minimize its effects and mitigate it when present. But how can the dust be mitigated unless we know where the dust is located? It may be too small to see, blending in with the background or hiding in crevices. It would be helpful to identify this dust as early as possible, both inside and outside of lunar spacecraft.Your challenge is to create a lunar dust inspection/detection system to help in reducing dust presence and/or addressing the hazard it could cause anywhere from the lunar surface to the free-floating conditions inside the spacecraft after it leaves the lunar surface.


Solution:


LDS (Lunar Dust Detection System) uses infra red sensors on suit seals and robotic arm in side spacecraft to detect amount and location of lunar dust.mapping data to mobile app - approximates the system in spacecraft -to visualize where and when mitigation is needed.for mitigation, vacuuming and magnetic field is used, and app check if still remains.also, using super nano hydrophobic spray on suits before going to missions can reduce lunar dust effects.

NASA Cairo Space Apps 2019 - 2020. lunar dust fighters team.

Our Code:

For Sensor:

/* @file SEN0233.ino @brief Air Quality Monitor (PM 2.5, HCHO, Temperature & Humidity) @n Get the module here: https://www.dfrobot.com/product-1612.html @n This example is to detect formaldehyde, PM2.5, temperature and humidity in the environment. @copyright [DFRobot](http://www.dfrobot.com), 2017 @copyright GNU Lesser General Public License @author [lijun](ju.li@dfrobot.com) @version V1.0 @date 2017-04-21*/char col;unsigned int PMSa =0,FMHDSa =0,TPSa =0,HDSa =0,PMSb =0,FMHDSb =0,TPSb =0,HDSb =0;unsigned int PMS =0,FMHDS =0,TPS =0,HDS =0,CR1 =0,CR2 =0;unsigned char buffer_RTT[40]={};//Serial buffer; Received Datachar tempStr[15];voidsetup(){Serial.begin(115200); Serial1.begin(9600);}voidloop(){while(!Serial1.available());while(Serial1.available()>0)//Data check: weather there is any Data in Serial1{for(int i=0;i<40;i++){ col =Serial1.read(); buffer_RTT[i]=(char)col;delay(2);} Serial1.flush(); CR1 =(buffer_RTT[38]<<8)+ buffer_RTT[39]; CR2 =0;for(int i=0;i<38;i++) CR2 += buffer_RTT[i];if(CR1 == CR2)//Check{ PMSa=buffer_RTT[12];//Read PM2.5 High 8-bit PMSb=buffer_RTT[13];//Read PM2.5 Low 8-bit PMS=(PMSa<<8)+PMSb;//PM2.5 value FMHDSa=buffer_RTT[28];//Read Formaldehyde High 8-bit FMHDSb=buffer_RTT[29];//Read Formaldehyde Low 8-bit FMHDS=(FMHDSa<<8)+FMHDSb;//Formaldehyde value TPSa=buffer_RTT[30];//Read Temperature High 8-bit TPSb=buffer_RTT[31];//Read Temperature Low 8-bit TPS=(TPSa<<8)+TPSb;//Temperature value HDSa=buffer_RTT[32];//Read Humidity High 8-bit HDSb=buffer_RTT[33];//Read Humidity Low 8-bit HDS=(HDSa<<8)+HDSb;//Humidity value}else{ PMS =0; FMHDS =0; TPS =0; HDS =0;}}Serial.println("-----------------------uart--------------------------");Serial.print("Temp : ");sprintf(tempStr,"%d%d.%d",TPS/100,(TPS/10)%10,TPS%10);Serial.print(tempStr);Serial.println("C");//Serial pring TemperatureSerial.print("RH : ");sprintf(tempStr,"%d%d.%d",HDS/100,(HDS/10)%10,HDS%10);Serial.print(tempStr);//Serial print humiditySerial.println(" %");//"%"Serial.print("HCHO : ");Serial.print(FMHDS);Serial.println(" ug/m3");// Serial print formaldehyde, unit: ug/m³Serial.print("PM2.5: ");Serial.print(PMS);Serial.println(" ug/m3");// Serial print PM2.5, unit: ug/m³Serial.println();

}

for App:

https://github.com/Ahmedhassan50/Dust-App


Future Work:
The enzyme works on dismantle the lunar dust particles, but need some time about more than 3 months to test the enzymes and their efficiency.

Resources:


[1] https://www.nasa.gov/specials/moon2mars/#top
[2] https://moon.nasa.gov/moon-toolkit/
[3] https://sservi.nasa.gov/
[4] https://drive.google.com/open?id=1NSHWz2loCmKXYlUJ...
[5] https://drive.google.com/open?id=19HxDP_HtcHsIHwZP...
[6] https://drive.google.com/open?id=1ZESMAWkaFZBN57cq...
[7] https://drive.google.com/open?id=16lx387SyFcazGW0lXxsOWKzMaMpo6Yp5
[8] https://pubs.rsc.org/en/content/articlehtml/2012/cp/c2cp41377a
[9]https://wiki.dfrobot.com/Air_Quality_Monitor__PM_2.5,_Formaldehyde,_Temperature_&_Humidity_Sensor__SKU__SEN0233#target_5

Team members:


Sherif Saied AbdelRaheem - Mechanical Engineer.
Farah ibrahim - Stem Researcher.
Ahmed Antar Mansour - Software Engineer.
Abdelrahman Tarek - software Engineer.
Ahmed Hassan Abdelaziz - Software Engineer.