What we do

Our Company Key target is to offer our clients engineers with the right competence and skills to meet their needs and expectations. We plan to start our consulting operations in two cities in Western Sweden. 

Team Vision Engineering focuses on four competence areas. Electronics Engineers, Design Engineers, Testing & Validation, Powertrain/Driveline, as well as project management within those fields.

Electronics Engineers

Due to digitalization and growing business within electronics Team Vision Engineering targets growth within Electic & Embedded systems.

 

Our Software Engineers are experienced within functions and software development. Our work encompasses software release management and, in many cases, functional development throughout all stages of the product development lifecycle:

– EMobility
– Engine/powertrain
– Power Electronics
– Embedded electronics

Design Engineers

In the field of mechanical design, we focus on the next generation of vehicles and industrial products. Our goal is to expand within the entire product development cycle, from concept development to complete product, CAD design, team-center, and industrialization.

Testing & Validation

Within Testing & Validation we have a wide focus ranging from different types of component tests to entire systems.

 

Our Test Engineers validate and ensure that products meet defined quality standards and requirements. Their responsibilities include developing, implementing, and executing test plans; identifying defects and issues; and reporting them to the development team to support resolution.

 

They work with a variety of testing methods and are often involved in all phases of the product development lifecycle.

Powertrain/Driveline

In Powertrain, we are developing the next generation of vehicles to meet the increasingly stringent demands and regulatory requirements for reduced fuel consumption and lower emissions.

 

We work in the following areas:

  • Engine calibration
  • Emission, after treatment.
  • Cert & legal requirements.
  • Diagnos OBD

Project Management

Team Vision aims to have several experienced Project Managers in all our business areas; Electronics, Mechanical Design, Testing, and Powertrain/Driveline. 


This incudes management of project development, from minor components to larger system, or even entire business projects.

<style>
.my-unfold-text-1 {
overflow: hidden;
max-height: 0;
transition: max-height 1.2s ease;
}

.show-less-btn-1 {
display: none;
}
</style>

<script>
document.addEventListener(“DOMContentLoaded”, function () {
const showMoreBtns = document.querySelectorAll(“.show-more-btn-1”);
const showLessBtns = document.querySelectorAll(“.show-less-btn-1”);
const textBlocks = document.querySelectorAll(“.my-unfold-text-1”);

if (showMoreBtns.length !== textBlocks.length || showLessBtns.length !== textBlocks.length) {
console.warn(“The number of buttons doesn’t match the number of text blocks.”);
return;
}

showMoreBtns.forEach((showMoreBtn, index) => {
const showLessBtn = showLessBtns[index];
const textBlock = textBlocks[index];

// Reset Elementor interference
textBlock.style.maxHeight = “0”;
textBlock.style.overflow = “hidden”;
textBlock.style.transition = “max-height 1.2s ease”;

showMoreBtn.style.display = “inline-block”;
showLessBtn.style.display = “none”;

function expandText(event) {
event.preventDefault();
textBlock.style.maxHeight = textBlock.scrollHeight + “px”;
showMoreBtn.style.display = “none”;
showLessBtn.style.display = “inline-block”;
}

function collapseText(event) {
event.preventDefault();
textBlock.style.maxHeight = “0px”;
showMoreBtn.style.display = “inline-block”;
showLessBtn.style.display = “none”;
}

showMoreBtn.addEventListener(“click”, expandText);
showLessBtn.addEventListener(“click”, collapseText);
});
});
</script>