You must give a numerical value Avog
and decide what function is Konst
. Also, you must wrap Integrate in Evaluate
, to avoid the trap of the order of evaluation:
electrondensity[x_, Z_, Avog_] := (7*Avog*Z)/(118)*(1/x)^3;
electrondensitycrit[\[Lambda]_] := 1.1 10^21/\[Lambda]^2;
Kramer[Z_, \[Lambda]_, T_, x_] :=
108*10^-4*Z*
Log[Konst[\[Lambda]]]/((T/100)^(3/
2)*\[Lambda]^2)*((electrondensity[x, Z,
Avog])/(electrondensitycrit[\[Lambda]]))^2;
Block[{Konst = Identity,
Avog = Quantity[1, "AvogadroConstant"] // QuantityMagnitude},
Plot[Evaluate[Integrate[Kramer[12, 10.6, 30, x], x]], {x, 0, 40}]]