Skip to main content

900 tonnes of sulphuric acid removed from Sterlite plant

Material being transported to various industries, says Collector

Nearly 900 tonnes of sulphuric acid have been removed until Thursday evening from the Sterlite Copper plant after a leak was detected at one of its storage units.
Collector Sandeep Nanduri said that 40 tankers carrying the acid had left the plant to various industries in Thoothukudi, Coimbatore, Salem and northern parts of Tamil Nadu. Sources said that nearly 200-300 tonnes of acid remain to be evacuated.
Meanwhile, a senior official with the Tamil Nadu Pollution Control Board toldThe Hindu that the material stocked inside the plant should be removed as soon as possible. “If you leave a house locked for a long time and if there’s an LPG cylinder, there are chances of an accident. So, the material should be removed,” he said.
Vedanta, the parent company of Sterlite Copper, in a petition submitted to the Madurai Bench of the Madras High Court seeking immediate restoration of power supply and access for maintenance personnel to the plant, had said that it would lead to a “catastrophe” if inflammable material were not removed immediately.
The company claimed that there were a number of chemicals in the plant, including phosphoric acid, resins and other material, which if left unattended, could prove to be hazardous.

‘Don’t restore power’

K. Kanakaraj, state executive council member of the CPI(M) and one of the petitioners in a case filed in the Madras High Court seeking closure of the Sterlite plant, said the Tamil Nadu Generation and Distribution Company need not restore power supply at the company to evacuate the material.
“Every industry will have diesel generators. That should be sufficient to evacuate the chemicals,” Mr. Kanakaraj said.


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 ...