const setUpStickyHeader = () => { let header = document.querySelector("#header"); toggleHeaderStickiness = () => { if (window.scrollY > 0) { header.classList.add("sticky-header"); } else { header.classList.remove("sticky-header"); } } window.addEventListener("scroll", toggleHeaderStickiness); } window.addEventListener("DOMContentLoaded", setUpStickyHeader); const setUpBurgerMenu = () => { console.log("burger menu setup initiated..."); let burger = document.querySelector("#primary-menu-trigger"); let fries = document.querySelectorAll("#primary-menu > ul") const toggleFries = () => { console.log("fry toggling initiated..."); for (var i = 0; i < fries.length; i++) { console.log("enter the fry loop..."); var fry = fries[i]; if (fry.classList.contains("show")) { fry.classList.remove("show"); console.log("showed fry ", i); } else { fry.classList.add("show"); console.log("hid fry ", i); } } } burger.addEventListener("click", toggleFries); } window.addEventListener("DOMContentLoaded", setUpBurgerMenu); // This opens the search bar window.addEventListener("DOMContentLoaded", function(){ document.querySelector("#top-search-trigger").addEventListener("click", function(){document.querySelector("body").classList.toggle("top-search-open")}) }); // The body tag has to have this for the right header styles to get applied, and since we can't edit the body tag directly through Divi, this is easier than editing theme files... window.addEventListener("DOMContentLoaded", function() { document.querySelector("body").classList.add("stretched"); })

About us

T.A. Cook is a global expert in Asset Performance Excellence. We work in the capital-intensive industries to develop and implement programs to increase and sustain our clients’ profitability. Our teams of specialized consultants, engineers and development coaches provide a unique approach to operational challenges. Since 2021, T.A. Cook has joined Accenture's Industry X business unit and become the one-stop provider for seamless asset lifecycle services enabled by digital solutions.

Our competencies

T.A. Cook focuses on core asset management topics while Accenture provides comprehensive digital expertise and scalability. The resulting end-to-end services benefit the client in reducing risk, improving asset productivity and output, and lowering total cost of ownership. The result is more sustainable and resilient assets and operations. Together, we represent the Intelligent Asset Management of the future.

     

Our Service Offerings

Digital Solutions

T.A. Cook’s experts identify digital opportunities and know that turning them into a success story requires everybody from shop floor to boardroom to understand, support and embrace the change.

Maintenance

Did you know that ~1% of applicable data is used to drive decision making and to manage the business? Having a realistic understanding of operations and commercial realities allows for maintenance strategies to be optimized.

STO Management

90% of STOs don't reach expected goals. We help our clients find the best answers for them by creating standard processes, providing specialist resources and even running whole turnarounds on a risk-share basis. Find out, how you can be among the 10%

Reliability

Unexpected equipment failures cause a high level of corrective maintenance work orders. We provide a unique approach to operational challenges to develop and implement reliability programs that increase and sustain your profitability.

Capital Projects

For the most part capital processes are similar and follow fairly standard gate sequences yet we have found that few projects deliver anything like the results they should. Lets change that together.

Operations

We support companies to optimize their network and operational footprint by developing a tailored strategic roadmap focusing on an integrative view of manufacturing networks, i.e. the interactions between the sites and the central company units.

4 Mega Trends Impacting the Successful Digitalization of STO Events

More than 80% of industrial STO events fail to meet expectations due to scope creep, unforeseen delays and related circumstances. Applying innovative technology solutions can help address these challenges. In partnership with startus, we identified 4 Mega Trends for the successful digitalization of Shutdowns, Turnarounds and Outages.

Read now

Featured insights

6 KEY ACTIONS TO MITIGATE SUPPLY CHAIN RISKS

6 KEY ACTIONS TO MITIGATE SUPPLY CHAIN RISKS

Following these six steps will help your plant to focus efforts on the right spares, mitigate supply chain risks, and eliminate avoidable downtime due to mismanaged spare parts

A new kind of networking

Twice a year, T.A. Cook invites top managers from the field of maintenance to the Maintenance Benchmarks Focus Group. This exclusive forum offers participants the opportunity to

Awards

$('.counter').children().each(function () { if ($(this).prop('Counter') === undefined) { $(this) .prop('Counter', 0) .animate( { Counter: $(this).text(), }, { duration: 5000, easing: 'swing', step: function (now) { $(this).text(Math.ceil(now)); }, } ); } });