uwe,this is a bug, we will fix it in the next release. The divide-by-two logic is not working properly for the "datasheet Kv" vco model which is used for the 7010/7011. There is a quick workaround you can do, change the library file to use the ideal tuning law model - with the correct parameters this will result in identical operation:
1. find: c:\Program Files\Applied Radio Labs\ADIsimPL Ver2\Lib\VCO\AD_Integrated.lib
2. make a backup copy of the file
3. open the file with notepad
4. find the entry for the ADF7010 VCO, it should look like
.model "ADF7010"
fscale = 1M
Kv = 80
V1 = .25
V2 = 2.75
F1 = 800
F2 = 1000
Ct = 5p
PNTable = {
100000, -88,
1000000, -108 }
.endmodel
5. delete the V1, V2, F1, F2 entries and replace them with F0 = 780, the result should look like:
.model "ADF7010"
fscale = 1M
Kv = 80
F0 = 780
Ct = 5p
PNTable = {
100000, -88,
1000000, -108 }
.endmodel
6. save the file
The program should now run correctly
Peter White
Applied Radio Labs