Skip to main content

China Prepares Mission to Land Spacecraft on Moon's Far Side

China Prepares Mission to Land Spacecraft on Moon's Far Side

 
China was preparing to launch a ground-breaking mission early Saturday to soft-land a spacecraft on the largely unexplored far side of the moon, demonstrating its growing ambitions as a space power to rival Russia, the European Union and US.
With its Chang'e 4 mission, China hopes to be the first country to ever successfully undertake such a landing. The moon's far side is also known as the dark side because it faces away from Earth and remains comparatively unknown, with a different composition from sites on the near side, where previous missions have landed.

If successful, the mission scheduled to blast off aboard a Long March 3B rocket will propel the Chinese space program to a leading position in one of the most important areas of lunar exploration.

China landed its Yutu, or "Jade Rabbit." rover on the moon five years ago and plans to send its Chang'e 5 probe there next year and have it return to Earth with samples - the first time that will have been done since 1976. A crewed lunar mission is also under consideration.

Chang'e 4 is also a lander-rover combination and will explore both above and below the lunar surface after arriving at the South Pole-Aitken basin's Von Karman crater following a 27-day journey.

It will also perform radio-astronomical studies that, because the far side always faces away from Earth, will be "free from interference from our planet's ionosphere, human-made radio frequencies and auroral radiation noise," space industry expert Leonard David wrote on the website Space.com.

It may also carry plant seeds and silkworm eggs, according to the official Xinhua News Agency.

Chang'e is the goddess of the moon in Chinese mythology.

China conducted its first crewed space mission in 2003, making it only the third country after Russia and the US to do so. It has put a pair of space stations into orbit, one of which is still operating as a precursor to a more than 60-ton station that is due to come online in 2022. The launch of a Mars rover is planned for the mid-2020s.

To facilitate communication between controllers on Earth and the Chang'e 4 mission, China in May launched a relay satellite named Queqiao, or "Magpie Bridge," after an ancient Chinese folk tale.

China's space program has benefited from cooperation with Russia and European nations, although it was excluded from the 420-ton International Space Station, mainly due to US legislation barring such cooperation amid concerns over its strong military connections. Its program also suffered a rare setback last year with the delayed launch of its Long March 5 rocket.


China's latest mission closely follows the touchdown of NASA's InSight spacecraft on Mars on Monday, at a site less than 400 miles (640 kilometers) from the American rover Curiosity, the only other working robot on Mars.

Comments

Popular posts from this blog

Spring Security with JWT for REST API

Spring is considered a trusted framework in the Java ecosystem and is widely used. It’s no longer valid to refer to Spring as a framework, as it’s more of an umbrella term that covers various frameworks. One of these frameworks is Spring Security , which is a powerful and customizable authentication and authorization framework. It is considered the de facto standard for securing Spring-based applications. Despite its popularity, I must admit that when it comes to single-page applications , it’s not simple and straightforward to configure. I suspect the reason is that it started more as an MVC application -oriented framework, where webpage rendering happens on the server-side and communication is session-based. If the back end is based on Java and Spring, it makes sense to use Spring Security for authentication/authorization and configure it for stateless communication. While there are a lot of articles explaining how this is done, for me, it was still frustrating to set it up for the f...

Java Functional Interfaces

  The term   Java functional interface   was introduced in Java 8. A   functional interface   in Java is an interface that contains only a single abstract (unimplemented) method. A functional interface can contain default and static methods which do have an implementation, in addition to the single unimplemented method. Here is a Java functional interface example: public interface MyFunctionalInterface { public void execute(); } The above counts as a functional interface in Java because it only contains a single method, and that method has no implementation. Normally a Java interface does not contain implementations of the methods it declares, but it can contain implementations in default methods, or in static methods. Below is another example of a Java functional interface, with implementations of some of the methods: public interface MyFunctionalInterface2{ public void execute(); public default void print(String text) { System.out.println(t...

Java Logger

In Java, logging is an important feature that helps developers to trace out the errors. Java is the programming language that comes with the logging approach. It provides a Logging API that was introduced in Java 1.4 version. It provides the ability to capture the log file. In this section, we are going to deep dive into the Java Logger API. Also, we will cover logging level, components, Logging handlers or appenders, logging formatters or layouts, Java Logger class, What is logging in Java? In Java, Logging is an API that provides the ability to trace out the errors of the applications. When an application generates the logging call, the Logger records the event in the LogRecord. After that, it sends to the corresponding handlers or appenders. Before sending it to the console or file, the appenders format that log record by using the formatter or layouts. Need for Logging It provides the complete tracing information of the application. It records the critical failure if any occur in ...