Russian experts claim that the time to reach Mars can be one to two months. At present such flammable engine is used. (Reuters) Highlighteers can travel to the new plasma rocket engine Kiyyah engine Mars in 30-60 days. Plasma rocket makes high speed and a short time travel makes it possible to travel in the space race: Russia has once again come into the fray in the space race. Russia’s government company Rosatom has announced a significant success in the development of plasma electric rocket engine. This company specializes in nuclear power and technology. The company claims that this engine can complete the journey from Earth to Mars in just one to two months. The plasma rocket traditionally eliminates the need for solid or liquid fuel combustion. It uses magnetic plasma accelerator, which can lead to high speed in space and may fall in a big decline in travel time. Russia’s Ijavastia newspaper has given information related to this. According to Junior Researcher Agor Biryulin at Troitsk, a scientific institute of Rosatom, ‘Plasma rocket is a kind of electric motor. It is based on two electrodes. Charged particles are flowed between them and high voltage is also placed on electrodes. This produces the electric current produces a magnetic field, which pushes the particles out of the engine. This process gives direction to plasma and a thrust is produced. In this technology, hydrogen is used as fuel. The engine can increase these particles up to 100 km per second. According to the report of the speedbusse standard, how much can be there, the distance between Mars and Earth is a distance of 14-22.5 million km. The rocket will need a speed of 313,822 kmph to complete such a distance in 30 days. Many organizations, including the European Space Agency and NASA, are working on the technology to minimize the travel time taken to go to other planets of the solar system. According to the report, the thrust of the plasma rocket being developed by Russia will be about 6 Newton which will be able to reach the speed of 100 km per second. How long does it take to reach Mars? This success of Russia can also give humanity an opportunity to travel outside the solar system. Alexi Voronov, the first Deputy Director General of Rosatom Research Institute, Troitsk, says that it may take about a year to reach Mars through the engine that we currently exist. So much time can be dangerous for astronauts, as they will have to face cosmic radiation for a long time. Plasma engine travel time can limit to 30-60 days. Location: New Delhi, New Delhi, Delhi, Published: February 12, 2025, 15:08 IsthomeWorld will travel from Earth to Mars in 30 days! Russia created a new rocket engine ) Plasma Engine (T) Mars Travel Time (T) Mars Speed News (T) Russia Space News (T) Earth to Mars
Credit-Read More
// Function to fetch the latest posts
function fetchLatestPosts() {
const feedUrl = ‘https://newskiosk.pro/feed/’; // Replace with your blog’s RSS feed URL
fetch(feedUrl)
.then(response => response.text())
.then(str => new window.DOMParser().parseFromString(str, “text/xml”))
.then(data => {
const items = Array.from(data.querySelectorAll(“item”));
const latestPostsContainer = document.getElementById(“latest-posts”);
latestPostsContainer.innerHTML = ”; // Clear previous posts
// Shuffle the items array
const shuffledItems = items.sort(() => Math.random() – 0.5);
// Select the first 5 items from the shuffled array
const selectedItems = shuffledItems.slice(0, 5);
Random Latest Posts Display // Loop through the selected items and display them
selectedItems.forEach(post => {
const link = post.querySelector(“link”).textContent;
const description = post.querySelector(“description”).textContent;
// Create a new post element
const postElement = document.createElement(“div”);
postElement.classList.add(“latest-post”);
postElement.innerHTML = `
${description} Read more
`;
// Append the new post element to the container
latestPostsContainer.appendChild(postElement);
});
})
.catch(error => console.error(‘Error fetching the latest posts:’, error));
}
// Call the function to fetch and display the latest posts
fetchLatestPosts();