Skip to content

Instantly share code, notes, and snippets.

@joary
Last active October 9, 2017 19:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joary/a8fa2ef255815b1486ee36e1e2235636 to your computer and use it in GitHub Desktop.
Save joary/a8fa2ef255815b1486ee36e1e2235636 to your computer and use it in GitHub Desktop.
bits_per_symbol = 2
symb_rate = 156.25e3;
dataword = 6144; # In bits
codeword = 18444; # In bits
frame_head = 10*13*bits_per_symbol;
usable_load = dataword/(frame_head + codeword);
data_rate = symb_rate * usable_load * bits_per_symbol;
dataword_rate = data_rate / dataword;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment