I am looking for some model or equation that, given the size of a frame, provide the time (channel access duration) needed to ensure a successfull transmission of this frame in 802.11p in Veins Framework.
My idea is use this value to guarantee channel access for some nodes in the network, with a non-zero probability of successfull transmission.
I've found the equation bellow in the class Mac1609_5.cc
simtime_t sendingDuration = RADIODELAY_11P + phy11p->getFrameDuration(mac->getBitLength(), usedMcs);
My question is, this is only the time that I need to take into account? There is some another behavior in veins that affects the time to transmit one frame?
Cheers.