# MixOil - Oil Mixing Calculator for SPA MixOil is a professional web application designed to calculate mixtures of different oils based on their weight, acid value (КЧ), color value (ЦЧ), and peroxide value (ПЧ). ## Details - URL: https://mixoil.pages.dev - Type: Single Page Application (SPA) - Stack: Vue 3, Vite, TailwindCSS, Pinia, vue-i18n ## Core Mathematics & Formulas MixOil uses weighted average calculations to compute final mixture characteristics: ### Total Weight ($W_{total}$) $$W_{total} = \sum W_i$$ ### Average Acid Value ($A_{avg}$) (Кислотное Число, КЧ) $$A_{avg} = \frac{\sum (W_i \times A_i)}{W_{total}}$$ ### Average Color Value ($C_{avg}$) (Цветное Число, ЦЧ) $$C_{avg} = \frac{\sum (W_i \times C_i)}{W_{total}}$$ ### Average Peroxide Value ($P_{avg}$) (Перекисное Число, ПЧ) $$P_{avg} = \frac{\sum (W_i \times P_i)}{W_{total}}$$ ## Knowledge Base (Google OKF compliant) - [Knowledge Index](/knowledge/index.md) - Main directory of semantic specifications. - [Formulas Specification](/knowledge/formulas.md) - Detailed breakdown of equations and limit parameters.