Well, I really didnt know how to ask this properly but here is the question. I have some code which produces data for me. I have 100 Reynolds Number from 0.1 to 2017 and at every Reynolds Number there will be shear stress values for 10.000 element. So I want Reynolds Numbers on x-axis and my shear stress(from 0.001 to 10) values on y-axis both will be on logarithmic scale and those 10.000 elements will be dots on the graph. So I will have totaly 100.000 points on the graph.
In this code I produce Re from 0.1 to 2017 and 10 element's shear stress values for every Reynolds Numbers. So at 0.1 on x-axis I need to have 10 points. So i looked for it but couldn't figure it out. So how can I do it ?
n = np.random.normal(mean, sd, 100)
for i in range(0, 105):
Re = 0.1 * (1.1**i)
B = e ** (-0.08 * Re) * (2.5 * np.log(Re) + 5.25) + 8.5 * (1 - e ** (-0.08 * Re))
C = 0.8+0.9*((e**(-0.08*Re)/(Re**2))+((1-e**(-0.08*Re))/(B**2)))**(-0.5)
F = 0.31*Re*e**(-0.1*Re)+1.8*e**(-0.88*d50/D)*(1-e**(-0.1*Re))
A = F/C
for j in range(10):
Dcbss = 0.52*math.tan(fi) / (((1 + (abs(n[j])*A))**2)*(1+(1/2.5)*((abs(n[j])*F)**2)*math.tan(fi)))
meanandsdto create some data. Could you include some suitable values for those in your example?