Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Welcome to the State of Charge (SoC) project documentation page for the 2024-2026 cycle. This project is at the forefront of our efforts to accurately measure and manage the energy storage capabilities of our solar vehicle's battery system. The SoC is a pivotal component that influences not just the performance but also the strategic decisions made during the race.

Here, I'll document my journey through the development and implementation of the SoC system, from theoretical groundwork and algorithm development to real-world testing and iteration. Expect insights into challenges faced, solutions devised, and breakthroughs achieved, alongside detailed analyses of our system's accuracy, reliability, and integration with the overall BPS.

This page will serve as a real-time chronicle of the project's progression, reflecting both the successes and the learning opportunities encountered along the way. Stay tuned for updates, technical deep-dives, and the occasional eureka moment as we push the boundaries of what's possible with solar vehicle energy management.




The section includes:


PageDescription
TBDTBD



Div
classchildrenn

Child pages (Children Display)
alltrue
styleh1



Style
/*This is the style for all tables*/
.wrapped, .wrapped th, .wrapped td {
    border: none !important;
    border-collapse: collapse;
}

/*This is the style for the div class childrenn*/
.childrenn {
	background-color: #F4F5F7;
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
}

/*This is for the "Children Display" as I want h1 to be the same size as body*/
.childrenn h1 {
    font-size: 16px;
    font-weight: normal;
    margin: 0;
}

/*Below is the animation for the link underline (only works for single line links)*/ 
a, a:hover {
  text-decoration: none; /* This explicitly removes underlines for both normal and hover states */
  color: #467AB4;
  line-height: 2;
  position: relative;
}

a::before {
  content: '';
  width: 0;
  height: 2px;
  border-radius: 2px;
  background-color: #467AB4;
  position: absolute;
  bottom: 0rem;
  left: 0;
  transition: width .4s;
}

a:hover::before {
  width: 100%;
}