好的,以下是一个符合您需求的函数:
```python
def calculate_performance(conversion_rate):
if conversion_rate < 15:
performance = 5
else:
performance = 15
for i in range(16, int(conversion_rate) + 1):
performance += 1
return performance
```
这个函数接受一个转化率作为输入,如果转化率小于15%,则绩效按5%计算,若是高于百分指15,取平均值,每多1%的转化率,则绩效加1%。函数返回计算出来的绩效值。