CAN bus split termination: What are typical component values?

CAN Split Termination Component Values

Component values

The CAN bus split termination typically consists of three components:

Component ratings

The ratings depend on the worst case design assumptions:

Resistor power

If you are unsure what selection to make, I recommend to use the 5V continous differential voltage as a basis.

Capacitor voltage rating

The capacitor voltage rating should be at least 1.5x the maximum voltage that can be applied across the capacitor.

The voltage applied across the capacitor is the larger one of the CANH/CANL lines with respect to GND. In all practically relevant cases, this is the VCC rail voltage, i.e. the same voltage we used for the resistor power calculation.

Code to compute resistor power:

from UliEngineering.Electronics.Resistors import *
from UliEngineering.EngineerIO import *
from UliEngineering.EngineerIO import print_value

print_value(power_dissipated_in_resistor_by_voltage(120.0, 3.3) / 2, 'W')
print_value(power_dissipated_in_resistor_by_voltage(120.0, 5.0) / 2, 'W')
print_value(power_dissipated_in_resistor_by_voltage(120.0, 12.0) / 2, 'W')
print_value(power_dissipated_in_resistor_by_voltage(120.0, 24.0) / 2, 'W')

Source: NXP AN10211