用相图分析 bbr,inflight 守恒的收敛速度

2024-09-03 02:36

本文主要是介绍用相图分析 bbr,inflight 守恒的收敛速度,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

以下的代码绘制了 bbr 的收敛相图:

#!/opt/homebrew/bin/python3import numpy as np
import matplotlib.pyplot as plt
from scipy.integrate import odeintdef model(vars, t, C, g):x, y = varsdxdt = C * (g * x) / (g * x + y) - xdydt = C * (g * y) / (g * y + x) - y# 下面是 inflight 守恒算法的模型代码#dxdt = C * (x + g) / (x + y + g) - x#dydt = C * (y + g) / (y + x + g) - yreturn [dxdt, dydt]def curve_length(trajectory, cycles):length = 0for i in range(1, cycles):x1, y1 = trajectory[i - 1]x2, y2 = trajectory[i]dx = x2 - x1dy = y2 - y1length += np.sqrt(dx**2 + dy**2)return lengthdef convergence_time(trajectory):length = 0for i in range(1, len(trajectory)):x1, y1 = trajectory[i - 1]x2, y2 = trajectory[i]if np.abs(x1 - x2) < 0.001 and np.abs(y1 - y2) < 0.001:return ireturn len(trajectory)C = 10.0
g_values = [0.6, 1.25, 2.25, 5]
# 下面是 inflight 守恒算法的 I 参数,为了不改 model 代码,仍用 g_values 名称
#g_values = [0.8, 2, 5, 10, 20]
initial_values = [(2, 8), (3, 7), (6, 4)]t = np.linspace(0, 100, 1000)
plt.figure(figsize=(8, 8))
for g in g_values:for x0, y0 in initial_values:solution = odeint(model, [x0, y0], t, args=(C, g))trajectory = [(solution[i, 0], solution[i, 1]) for i in range(len(solution))]cycles = convergence_time(trajectory)length = curve_length(trajectory, cycles)print(cycles, length, g)if g < 1:plt.plot(solution[:, 0], solution[:, 1], label=f'g={g}', linestyle = 'dashed')else:plt.plot(solution[:, 0], solution[:, 1], label=f'g={g}')x = np.linspace(0, 100, 1000)
plt.plot(x, x, label='x = y')
plt.plot(x, C - x, label='x + y = C')
plt.axis('equal')for x0, y0 in initial_values:plt.annotate(f'({x0}, {y0})', (x0, y0), textcoords="offset points", xytext=(0,10), ha='center')plt.xlabel('x')
plt.ylabel('y')
x_min, x_max = plt.xlim()
y_min, y_max = plt.ylim()
plt.xlim(0, 10 + 2)
plt.ylim(0, 10 + 2)
plt.title(f'bbr convergence, C = {C}')
plt.legend()
plt.grid()
plt.show()

绘图如下:
在这里插入图片描述

虚线表示 g < 1 的场景,而 g = 1 时就是 x +y = C 本身,可见 g <=1 时,系统都不会收敛,当 g > 1 时,收敛速度与 g 正相关。

代码中的 convergence_time 和 curve_length 函数可以定量计算收敛速度:

  • convergence_time,当 x,y 均不再变化时,步骤数越少即用时越短,收敛越快;
  • curve_time,相同或更短的时间内,相图轨迹 “跑” 得越远,收敛越快。

我们需要从定量计算中总结出定性规律,企图可以通过相图的几何特征中,即相图轨迹的走势与公平线夹角越小,收敛越快,相图轨迹越平直(而不弯曲迂回),收敛越快。

但收敛快的代价是更大的 buffer 占用,时延增加,这又是前面谈到的效率和公平不可兼得的问题。

浙江温州皮鞋湿,下雨进水不会胖。

这篇关于用相图分析 bbr,inflight 守恒的收敛速度的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1131781

相关文章

Spring事务中@Transactional注解不生效的原因分析与解决

《Spring事务中@Transactional注解不生效的原因分析与解决》在Spring框架中,@Transactional注解是管理数据库事务的核心方式,本文将深入分析事务自调用的底层原理,解释为... 目录1. 引言2. 事务自调用问题重现2.1 示例代码2.2 问题现象3. 为什么事务自调用会失效3

找不到Anaconda prompt终端的原因分析及解决方案

《找不到Anacondaprompt终端的原因分析及解决方案》因为anaconda还没有初始化,在安装anaconda的过程中,有一行是否要添加anaconda到菜单目录中,由于没有勾选,导致没有菜... 目录问题原因问http://www.chinasem.cn题解决安装了 Anaconda 却找不到 An

Spring定时任务只执行一次的原因分析与解决方案

《Spring定时任务只执行一次的原因分析与解决方案》在使用Spring的@Scheduled定时任务时,你是否遇到过任务只执行一次,后续不再触发的情况?这种情况可能由多种原因导致,如未启用调度、线程... 目录1. 问题背景2. Spring定时任务的基本用法3. 为什么定时任务只执行一次?3.1 未启用

C++ 各种map特点对比分析

《C++各种map特点对比分析》文章比较了C++中不同类型的map(如std::map,std::unordered_map,std::multimap,std::unordered_multima... 目录特点比较C++ 示例代码 ​​​​​​代码解释特点比较1. std::map底层实现:基于红黑

Spring、Spring Boot、Spring Cloud 的区别与联系分析

《Spring、SpringBoot、SpringCloud的区别与联系分析》Spring、SpringBoot和SpringCloud是Java开发中常用的框架,分别针对企业级应用开发、快速开... 目录1. Spring 框架2. Spring Boot3. Spring Cloud总结1. Sprin

Spring 中 BeanFactoryPostProcessor 的作用和示例源码分析

《Spring中BeanFactoryPostProcessor的作用和示例源码分析》Spring的BeanFactoryPostProcessor是容器初始化的扩展接口,允许在Bean实例化前... 目录一、概览1. 核心定位2. 核心功能详解3. 关键特性二、Spring 内置的 BeanFactory

MyBatis-Plus中Service接口的lambdaUpdate用法及实例分析

《MyBatis-Plus中Service接口的lambdaUpdate用法及实例分析》本文将详细讲解MyBatis-Plus中的lambdaUpdate用法,并提供丰富的案例来帮助读者更好地理解和应... 目录深入探索MyBATis-Plus中Service接口的lambdaUpdate用法及示例案例背景

MyBatis-Plus中静态工具Db的多种用法及实例分析

《MyBatis-Plus中静态工具Db的多种用法及实例分析》本文将详细讲解MyBatis-Plus中静态工具Db的各种用法,并结合具体案例进行演示和说明,具有很好的参考价值,希望对大家有所帮助,如有... 目录MyBATis-Plus中静态工具Db的多种用法及实例案例背景使用静态工具Db进行数据库操作插入

Go使用pprof进行CPU,内存和阻塞情况分析

《Go使用pprof进行CPU,内存和阻塞情况分析》Go语言提供了强大的pprof工具,用于分析CPU、内存、Goroutine阻塞等性能问题,帮助开发者优化程序,提高运行效率,下面我们就来深入了解下... 目录1. pprof 介绍2. 快速上手:启用 pprof3. CPU Profiling:分析 C

MySQL表锁、页面锁和行锁的作用及其优缺点对比分析

《MySQL表锁、页面锁和行锁的作用及其优缺点对比分析》MySQL中的表锁、页面锁和行锁各有特点,适用于不同的场景,表锁锁定整个表,适用于批量操作和MyISAM存储引擎,页面锁锁定数据页,适用于旧版本... 目录1. 表锁(Table Lock)2. 页面锁(Page Lock)3. 行锁(Row Lock