You are using 2013 and that's mean you can not open the files.
OK.
1. you need to create new assembly.
2. copy following code into modile1 section in DocumentProject in VBA
Sub InsertModel()
Dim oDoc As AssemblyDocument
Set oDoc = ThisApplication.ActiveDocument
Dim oOccs As ComponentOccurrences
Set oOccs = oDoc.ComponentDefinition.Occurrences
Dim oPos As Matrix
Set oPos = ThisApplication.TransientGeometry.CreateMatrix
' Add an occurrence based on Index parameter (Parameter(3)) which is calculatd in iLogic.
Dim oRow As Integer
oRow = oDoc.ComponentDefinition.Parameters(3).Value
' Add a translation along X axis
Dim oX, oY, oZ As Double
oX = 1
oY = 0
oZ = 0
oPos.SetTranslation ThisApplication.TransientGeometry.CreateVector(oX, oY, oZ)
' you have to your path to the document in AddiAssemblyMember command
Dim oOcc As ComponentOccurrence
Set oOcc = oOccs.AddiAssemblyMember("C:\Users\biro\Documents\Test iAssembly\Assembly1.iam", oPos, oRow)
End Sub
3. Create tree user parameters in Assembly2. Diametar, Lenght, Index. They have to multi-valued parameter.

4. Create new form by Add Form in iLogic menu.
5. Put two controls for Diameter nad lenght parameters on the Form.

6. Create new rule in iLogic and past following code.
iLogicForm.Show("Form 1", FormMode.Modal)
' Diametar, Length and Index are User Parameters in Assembly2 document.
'you have to determine index (row number of assembly in iAssembly)
If Diameter=100 Then aIn=0
If Diameter=125 Then aIn=1
If Length=120 Then bIn=1
If Length=150 Then bIn=2
If Length=180 Then bIn=3
If Length=210 Then bIn=4
If Length=240 Then bIn=5
' For example: D=100 and L=120 =>Index=1
' if you look at iAssembly table you will find the first element is with Diametar 100 and Lenght 120mm, and so on.
Index=aIn*5+bIn
InventorVb.RunMacro("DocumentProject", "Module1", "InsertModel")
iLogicVb.UpdateWhenDone = True
InventorVb.DocumentUpdate()
7. Now you need to create Assembly1 with ten members.
IMPORTANT: You have to enter correct path in VBA code. Find red text at the end of code and change it.
Run Rule0